-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
49 lines (41 loc) · 1.33 KB
/
pyproject.toml
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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
authors = ["Ludeeus <[email protected]>"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "One version package to rule them all, One version package to find them, One version package to bring them all, and in the darkness bind them."
exclude = ['**/__pycache__']
include = ["awesomeversion", "awesomeversion.*", "LICENCE.md"]
keywords = ["calver", "semver", "0ver", "version", "pep440", "buildver"]
license = "MIT"
maintainers = ["Ludeeus <[email protected]>"]
name = "awesomeversion"
readme = "README.md"
repository = "https://github.com/ludeeus/awesomeversion"
version = "0"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
black = "^24.8"
isort = "^5.13.2"
mypy = "^1.14"
pylint = "^3.2.7"
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
pytest-snapshot = "^0.9.0"
[tool.isort]
combine_as_imports = true
force_sort_within_sections = true
profile = "black"
[tool.pylint.'MESSAGES CONTROL']
disable = "unsubscriptable-object,duplicate-code,too-many-public-methods"
[tool.coverage.run]
source = ["awesomeversion"]
omit = ["setup.py", "tests/*"]
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:"]