-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (95 loc) · 3.15 KB
/
pyproject.toml
File metadata and controls
108 lines (95 loc) · 3.15 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bash-script-maker"
version = "1.10.0"
description = "Ein GUI-Programm zur Erstellung von Bash-Scripts mit visueller Unterstützung"
readme = "README.md"
license = {text = "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 = [
"ttkbootstrap>=1.10.1",
"pygments>=2.15.1",
"Pillow>=9.0.0",
]
[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",
"bandit>=1.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.gui-scripts]
bash-script-maker = "bash_script_maker:main"
[project.scripts]
bash-script-maker = "bash_script_maker:main"
[tool.setuptools]
py-modules = ["bash_script_maker", "syntax_highlighter", "localization", "custom_dialogs", "assets"]
include-package-data = true
zip-safe = false
[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__.:",
]
# SEMANTIC-RELEASE KONFIGURATION
[tool.semantic_release]
version_variables = ["VERSION:__version__"]
build_command = "pip install build && python -m build"
commit_message = "chore(release): bump version to {version}"
commit_author = "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
tag_format = "v{version}"
branch = "main"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true