-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
83 lines (72 loc) · 2.09 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
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "parver"
version = "0.5"
description = "Parse and manipulate version numbers."
readme = "README.rst"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Frazer McLean", email = "[email protected]" },
]
keywords = ["pep440", "version", "parse"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"arpeggio>=1.7",
"attrs >= 19.2",
"typing-extensions; python_version<'3.10'",
]
[project.optional-dependencies]
test = ["pytest", "hypothesis", "pretend"]
docs = ["sphinx", "furo"]
docstest = ["doc8"]
pep8test = ["flake8", "pep8-naming"]
[project.urls]
Documentation = "https://parver.readthedocs.io"
"Source Code" = "https://github.com/RazerM/parver"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
branch = true
source = ["parver", "tests/"]
[tool.coverage.paths]
source = ["src/parver", ".tox/*/lib/python*/site-packages/parver"]
[tool.coverage.report]
precision = 1
exclude_lines = ["pragma: no cover", "pass"]
[tool.isort]
profile = "black"
[tool.mypy]
warn_unused_configs = true
show_error_codes = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
[[tool.mypy.overrides]]
module = [
"arpeggio.*",
]
ignore_missing_imports = true