-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (85 loc) · 1.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools @ git+https://github.com/pypa/setuptools.git@main"]
[project]
name = "lazystuff"
version = "1.2.0"
authors = [{ name = "David Byers", email = "[email protected]"}]
description = "Lazy-ish list-like objects for streaming APIs."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["lazy", "sequence"]
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Typing :: Typed"
]
dependencies = []
[project.optional-dependencies]
dev = [
"Flake8-pyproject",
"build",
"flake8",
"mypy",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-markdown-builder",
"sphinx-rtd-theme",
"twine",
"vulture",
"wheel",
]
[project.urls]
Homepage = "https://github.com/ookisan/lazystuff"
Issues = "https://github.com/ookisan/lazystuff/issues"
[tool.setuptools]
packages = ["lazystuff"]
[tool.setuptools.package-data]
lazystuff = ["py.typed"]
[tool.flake8]
max-line-length = 131
[tool.pydocstyle]
add_ignore = "D105"
[tool.pytest.ini_options]
addopts = [
"--tb", "short",
"--cov", "lazystuff",
"--cov-branch",
"--cov-report", "term-missing",
"--cov-config", ".coveragerc",
]
testpaths = [
"tests"
]
[tool.mypy]
files = "lazystuff"
strict = true
strict_equality = false
extra_checks = true
no_implicit_reexport = true
no_error_summary = true
[tool.pylint.main]
ignore = [".git"]
ignore-patterns = ["^\\.#"]
jobs = 0
enable-all-extensions = true
[tool.pylint.format]
max-line-length = 131
max-module-lines = 2000
[tool.pylint."messages control"]
enable = [
"useless-suppression"
]
disable = [
"duplicate-code"
]
[tool.pylint.reports]
output-format = "parseable"
reports = false
score = false