-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (76 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
92 lines (76 loc) · 2.09 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]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "versioningit", "wheel"]
[project]
name = "semvergit"
description = "Manage your project's version numbers."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["packaging", "publishing", "release", "versioning"]
authors = [{ name = "Roy Moore", email = "roy@moore.co.il" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10"
dependencies = [
"gitpython>=3.1.44,<4",
"semver>=3.0.2,<4",
"loguru>=0.7.0,<1",
"click>=8.1,<9",
]
dynamic = ["version", "optional-dependencies"]
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements/requirements-dev.txt"] }
test = { file = ["requirements/requirements-test.txt"] }
[project.scripts]
semvergit = "semvergit.cli:cli"
[project.urls]
homepage = "https://github.com/Tranquility2/semvergit"
repository = "https://github.com/Tranquility2/semvergit"
[tool.versioningit.vcs]
default-tag = "0.0.0"
match = ["v*", ]
method = "git"
[tool.versioningit.tag2version]
rmprefix = "v"
[tool.pip-tools]
quiet = true
rebuild = true
strip-extras = true
annotation-style = "line"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
multi_line_output = 3
[tool.pylint.main]
fail-under = 10.0
[tool.pylint.format]
max-line-length = 120
[tool.coverage.run]
omit = ["semvergit/tests/*", "src/semvergit/__main__.py"]
[tool.coverage.report]
fail_under = 100
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
disallow_untyped_defs = true
implicit_reexport = false
warn_unused_ignores = true
warn_redundant_casts = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
show_traceback = true
[tool.bandit]
exclude_dirs = ["tests"]