-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (74 loc) · 1.84 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
84
85
86
87
[tool.poetry]
name = "vhelpers"
version = "0.3.0"
description = "Often used functions in vladimirs-git projects"
authors = ["Vladimir Prusakov <[email protected]>"]
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/vladimirs-git/vhelpers"
repository = "https://github.com/vladimirs-git/vhelpers"
keywords = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = "^3.8"
tomli = "^2.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
[tool.poetry.group.dev.dependencies]
dictdiffer = "^0.9.0"
mypy = "^1.6.1"
pygments = "^2.16.1"
pylint = "^3.0.1"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
restructuredtext-lint = "^1.4.0"
ruff = "^0.1.8"
tabulate = "^0.9.0"
[tool.poetry.extras]
test = ["pytest"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/vladimirs-git/vhelpers/issues"
"Download URL" = "https://github.com/vladimirs-git/vhelpers/archive/refs/tags/0.3.0.tar.gz"
[tool.setuptools.package-data]
vhelpers = ["py.typed"]
[tool.pylint]
max-line-length = 100
disable = "fixme"
[tool.pylint.message_control]
enable = ["too-many-arguments", "too-many-locals"]
max-args = 6
max-locals = 16
[tool.mypy]
python_version = "3.8"
[tool.ruff]
exclude = [
".git",
".idea",
".mypy_cache",
".pytype",
".ruff_cache",
".venv",
"_notes",
"dist",
"demo",
"temp",
"tmp",
"venv",
]
line-length = 100
indent-width = 4
target-version = "py38"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false # arguments on separate lines
line-ending = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"