-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
364 lines (332 loc) · 7.45 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"setuptools_scm",
]
[project]
authors = [{name = "Common Partial Wave Analysis", email = "[email protected]"}]
dependencies = [
"PyYAML",
"attrs >=20.1.0", # https://www.attrs.org/changelog.html#id82
"html2text",
"ini2toml",
"jinja2",
"nbformat",
"packaging",
"pathspec",
"pip-tools",
"rtoml", # fast, read-only parsing
"ruamel.yaml", # better YAML dumping
"tomlkit", # preserve original TOML formatting
'typing-extensions; python_version <"3.12.0"', # override
]
description = "Pre-commit hooks that ensure that ComPWA repositories have a similar developer set-up"
dynamic = ["version"]
license = {text = "BSD 3-Clause License"}
maintainers = [{email = "[email protected]"}]
name = "compwa-policy"
requires-python = ">=3.9"
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.scripts]
check-dev-files = "compwa_policy.check_dev_files:main"
colab-toc-visible = "compwa_policy.colab_toc_visible:main"
fix-nbformat-version = "compwa_policy.fix_nbformat_version:main"
remove-empty-tags = "compwa_policy.remove_empty_tags:main"
self-check = "compwa_policy.self_check:main"
set-nb-cells = "compwa_policy.set_nb_cells:main"
[project.urls]
Source = "https://github.com/ComPWA/policy"
Tracker = "https://github.com/ComPWA/policy/issues"
[dependency-groups]
dev = [
"labels",
"ruff",
"sphinx-autobuild",
{include-group = "doc"},
{include-group = "style"},
{include-group = "test"},
]
doc = [
"myst-parser",
"sphinx",
"sphinx-api-relink",
"sphinx-argparse",
"sphinx-book-theme",
"sphinx-codeautolink",
"sphinx-copybutton",
]
style = [
"mypy",
{include-group = "types"},
]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
types = [
"pytest",
"sphinx-api-relink",
"types-PyYAML",
"types-toml",
]
[tool.setuptools]
include-package-data = false
license-files = ["LICENSE"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
compwa_policy = [
".github/*",
".github/**/*",
".template/*",
".template/.*",
"py.typed",
]
[tool.setuptools.packages.find]
namespaces = false
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_scheme = "only-version"
write_to = "src/compwa_policy/version.py"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_defs = true
exclude = '.*/compwa_policy/__init__\.py'
files = ["**/*.py"]
show_error_codes = true
warn_unused_configs = true
[[tool.mypy.overrides]]
check_untyped_defs = true
disallow_incomplete_defs = false
disallow_untyped_defs = false
module = ["tests.*"]
[[tool.mypy.overrides]]
ignore_errors = true
module = ["typings.*"]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["ruamel.*"]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["nbformat.*"]
[tool.pyright]
exclude = [
"**/.git",
"**/.ipynb_checkpoints",
"**/.mypy_cache",
"**/.pytest_cache",
"**/.tox",
"**/.venv/",
"**/__pycache__",
"**/_build",
]
reportArgumentType = false
reportGeneralTypeIssues = false
reportIncompatibleMethodOverride = false
reportMissingParameterType = false
reportMissingTypeArgument = false
reportMissingTypeStubs = false
reportOverlappingOverload = false
reportPrivateImportUsage = false
reportPrivateUsage = false
reportReturnType = false
reportUnboundVariable = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUnnecessaryComparison = false
reportUnnecessaryContains = false
reportUnnecessaryIsInstance = false
reportUntypedFunctionDecorator = false
reportUnusedClass = true
reportUnusedFunction = true
reportUnusedImport = true
reportUnusedVariable = true
typeCheckingMode = "strict"
venv = ".venv"
venvPath = "."
[tool.pytest.ini_options]
addopts = [
"--color=yes",
"--doctest-continue-on-failure",
"--doctest-modules",
"--durations-min=0",
"--durations=3",
]
filterwarnings = [
"error",
"ignore: Importing ErrorTree directly from the jsonschema package is deprecated.*",
"ignore: The `hash` argument is deprecated in favor of `unsafe_hash` and will be removed in or after August 2025.:DeprecationWarning",
]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
testpaths = [
"src",
"tests",
]
[tool.ruff]
extend-exclude = ["typings"]
preview = true
show-fixes = true
src = [
"src",
"tests",
]
[tool.ruff.format]
docstring-code-format = true
line-ending = "lf"
[tool.ruff.lint]
ignore = [
"ANN401",
"C408",
"COM812",
"CPY001",
"D101",
"D102",
"D103",
"D105",
"D107",
"D203",
"D213",
"D407",
"D416",
"DOC",
"E501",
"FBT",
"FURB101",
"FURB103",
"FURB140",
"G004",
"ISC001",
"PLR0913",
"PLW1514",
"PLW2901",
"PT001",
"PTH",
"S301",
"SIM108",
"UP036",
]
select = ["ALL"]
task-tags = ["cspell"]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.isort]
known-first-party = ["compwa_policy"]
split-on-trailing-comma = false
[tool.ruff.lint.per-file-ignores]
"docs/*" = [
"E402",
"INP001",
"S101",
"S113",
"T201",
]
"docs/conf.py" = ["D100"]
"setup.py" = ["D100"]
"tests/*" = [
"ANN",
"D",
"INP001",
"PGH001",
"PLC2701",
"PLR2004",
"PLR6301",
"S101",
"SLF001",
"T20",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.tomlsort]
all = false
ignore_case = true
in_place = true
sort_first = [
"build-system",
"project",
"tool.setuptools",
"tool.setuptools_scm",
]
spaces_indent_inline_array = 4
trailing_comma_inline_array = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist =
cov
doc
linkcheck
sty
skip_install = True
skip_missing_interpreters = True
skipsdist = True
[testenv]
allowlist_externals =
pytest
commands =
pytest {posargs}
description = Run all unit tests
passenv = *
[testenv:cov]
allowlist_externals =
pytest
commands =
pytest {posargs} \
--cov-fail-under=35 \
--cov-report=html \
--cov-report=xml \
--cov=compwa_policy
description = Compute test coverage
[testenv:doc]
allowlist_externals =
sphinx-build
commands =
sphinx-build \
--builder=html \
--fail-on-warning \
--keep-going \
--show-traceback \
docs/ docs/_build/html
description = Build documentation and API through Sphinx
[testenv:doclive]
allowlist_externals =
sphinx-autobuild
commands =
sphinx-autobuild \
--ignore=docs/_build \
--ignore=docs/api \
--open-browser \
--port=0 \
--re-ignore='.*\\.egg-info' \
--re-ignore='.*/__pycache__/.*' \
--watch=docs \
--watch=src \
docs/ docs/_build/html
description = Set up a server to directly preview changes to the HTML pages
[testenv:linkcheck]
allowlist_externals =
sphinx-build
commands =
sphinx-build \
--builder=linkcheck \
--show-traceback \
docs/ docs/_build/linkcheck
description = Check external links in the documentation (requires internet connection)
setenv =
PYTHONWARNINGS =
[testenv:sty]
allowlist_externals =
pre-commit
commands =
pre-commit run --all-files {posargs}
description = Perform all linting, formatting, and spelling checks
"""