-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bash-script-maker"
dynamic = ["version"]
description = "Ein GUI-Programm zur Erstellung von Bash-Scripts mit visueller Unterstützung"
readme = "README.md"
license = "MIT"
authors = [
{name = "Marcel Dellmann", email = "support@secure-bits.org"},
]
maintainers = [
{name = "Marcel Dellmann", email = "support@secure-bits.org"},
]
keywords = ["bash", "script", "gui", "editor", "generator", "linux"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Software Development :: Code Generators",
]
requires-python = ">=3.8"
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"pytest-cov>=2.10.0",
"flake8>=3.8.0",
"black>=21.0.0",
"mypy>=0.800",
"tox>=3.20.0",
"twine>=3.0.0",
"build>=0.7.0",
]
[project.urls]
Homepage = "https://github.com/securebitsorg/bash-script-maker"
Documentation = "https://github.com/securebitsorg/bash-script-maker#readme"
Repository = "https://github.com/securebitsorg/bash-script-maker"
"Bug Reports" = "https://github.com/securebitsorg/bash-script-maker/issues"
Changelog = "https://github.com/securebitsorg/bash-script-maker/blob/main/CHANGELOG.md"
[project.scripts]
bash-script-maker = "bash_script_maker:main"
[tool.setuptools]
py-modules = ["bash_script_maker", "syntax_highlighter"]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --strict-markers --disable-warnings"
testpaths = [
"tests",
]
python_files = "test_*.py"
[tool.coverage.run]
source = ["bash_script_maker", "syntax_highlighter"]
omit = [
"*/tests/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]
[tool.semantic_release]
version_variable = "VERSION"
upload_to_release = true
upload_to_pypi = false
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "pip install build && python -m build"