forked from Zuehlke/ConfZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.68 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
[tool.poetry]
name = "confz"
version = "1.6.0"
description = "ConfZ is a configuration management library for Python based on pydantic."
license = "MIT"
authors = ["Zühlke"]
readme = "README.md"
homepage = "https://github.com/Zuehlke/ConfZ"
repository = "https://github.com/Zuehlke/ConfZ"
documentation = "https://confz.readthedocs.io"
keywords = ["Configuration Management", "Config Management"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "^1.9.0"
PyYAML = ">=5.4.1, <7.0.0"
python-dotenv = ">=0.19.2, <0.21.0"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
Sphinx = "^5.0.0"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.18.3"
black = {extras = ["d"], version = "^22.3.0"}
mypy = "^0.960"
pylint = "^2.12.2"
types-PyYAML = "^6.0.1"
types-toml = "^0.10.7"
[tool.black]
# Use default black configuration
[tool.pylint.messages_control]
disable = [
"wrong-hanging-indentation", # to work together with black
"bad-whitespace", # to work together with black
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"invalid-name",
"too-few-public-methods"
]
extension-pkg-whitelist = "pydantic"
[tool.pylint.format]
max-line-length = "88" # to work together with black
[tool.mypy]
# Use default mypy configuration
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"