-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
432 lines (383 loc) · 11 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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
####################
# Project Metadata #
####################
[project]
name = "pytestdornech"
description = "Dornech's testpackage"
readme = "README.md"
requires-python = ">=3.9"
# only license identifier from https://spdx.org/licenses/ are allowed
license = { text = "MIT" }
# keywords for easier look-up on PyPI
keywords = ["keyword_1", "keyword_2"] # ToDo: Modify according to your needs!
authors = [
{ name = "dornech", email = "dornech@gmx.de" },
]
# options under https://pypi.org/classifiers/
classifiers = [ # ToDo: Modify according to your needs!
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"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",
]
# direct dependencies of this package, installed when users `pip install pytestdornech` later.
dependencies = [ # ToDo: Modify according to your needs!
"setuptools_scm",
"typer",
# "numpy",
# "matplotlib",
# "seaborn",
]
dynamic = ["version"]
[project.optional-dependencies]
# n. a.
[project.scripts]
# Use `fibonacci` as command-line script, comment or remove this section if not needed.
fibonacci = "pytestdornech.skeleton:app"
[project.urls]
# important URLs for this project
# ToDo: Modify according to your needs!
Documentation = "https://dornech.github.io/pytestdornech"
Source = "https://github.com/dornech/pytestdornech"
Tracker = "https://github.com/dornech/pytestdornech/issues"
Sponsor = "https://github.com/sponsors/dornech"
######################
# Build & Versioning #
######################
[tool.hatch.metadata]
# direct dependency references, e.g `pip @ git+https://github.com/pypa/pip.git@master`
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }
[tool.hatch.build.hooks.vcs]
version-file = "src/pytestdornech/_version.py"
[tool.hatch.build]
packages = ["src/pytestdornech"]
[tool.hatch.build.targets.sdist]
artifacts = ["_version.py"]
exclude = [
"/.github",
]
[tool.bumpversion]
current_version = "0.1.4"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
ignore_missing_files = true
ignore_missing_version = true
commit = true
commit_args = ""
sign_tags = false
tag = true
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
message = "Bump version: {current_version} → {new_version}"
setup_hooks= ["generate-changelog"]
post_commit_hooks = ["hatch build"]
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = "Unreleased"
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = "{current_version}...HEAD"
replace = "{current_version}...{new_version}"
[tool.semantic_release]
assets = []
build_command = "pip install hatch && hatch build"
build_command_env = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = true
allow_zero_version = true
no_git_verify = false
tag_format = "v{version}"
version_variable = []
version_toml = ["pyproject.toml:tool.bumpversion:current_version"]
version_pattern = []
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease = false
prerelease_token = "rc"
[tool.semantic_release.changelog]
exclude_commit_patterns = []
mode = "init"
insertion_flag = "<!-- version list -->"
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
output_format = "md"
mask_initial_release = true
[tool.semantic_release.changelog.environment]
block_start_string = "{%"
block_end_string = "%}"
variable_start_string = "{{"
variable_end_string = "}}"
comment_start_string = "{#"
comment_end_string = "#}"
trim_blocks = false
lstrip_blocks = false
newline_sequence = "\n"
keep_trailing_newline = false
extensions = []
autoescape = false
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
other_allowed_tags = ["build", "chore", "ci", "docs", "style", "refactor", "test"]
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
default_bump_level = 0
[tool.semantic_release.remote]
name = "origin"
type = "github"
token = { env = "GH_TOKEN" }
ignore_token_for_push = false
insecure = false
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true
##################
# External Tools #
##################
[tool.mypy]
files = ["src/pytestdornech", "tests"]
disallow_untyped_defs = false
follow_imports = "normal" # "silent" for not following
ignore_missing_imports = true
pretty = true
show_column_numbers = true
warn_no_return = false
warn_unused_ignores = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --doctest-glob='*.md'"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["src/pytestdornech"]
omit = [
"_version.py", # automatically created by hatch-vcs, not in repo
]
[tool.coverage.paths]
source = [
"src/",
"*/site-packages/",
]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
# Have to re-enable the standard pragma
"pragma: no cover",
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
# target-version = "py39" # ToDo: Modify according to your needs!
line-length = 120
indent-width = 4
include = [
"src/**/*.py",
"src/**/*.pyi",
"tests/**/*.py",
"tests/**/*.pyi"
]
[tool.ruff.lint]
preview = true # preview features & checks, use with caution
extend-select = [ # features in preview
"W292", # missing-newline-at-end-of-file
]
select = [
"A",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT", # Boolean trap
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"Q",
"RUF",
"S",
"SIM",
"T",
"TID",
"UP",
"W",
"YTT",
"RUF100", # Automatically remove unused # noqa directives
]
ignore = [
# Allow non-abstract empty methods in abstract base classes
"B027",
# Allow boolean positional values in function calls, like `dict.get(... True)`
"FBT003",
# Ignore checks for possible passwords
"S105", "S106", "S107",
# Ignore complexity
"C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915",
"PLC1901", # empty string comparisons
"PLW2901", # `for` loop variable overwritten
"SIM114", # Combine `if` branches using logical `or` operator
"E203", # Whitespace before :, needed for black compatability and also `ruff format`
"ISC001", # causes unexpected behaviour with formatter
"I001", # enforce reorganisation of imports
"T201", # print statements
"Q000" # double quotes found but single quotes preferred
]
unfixable = [
# "F401", # Don't touch unused imports
]
exclude = ["__init__.py", "_version.py"]
[tool.ruff.format]
quote-style = "single" # be more like black
exclude = ["__init__.py", "_version.py"]
[tool.ruff.lint.isort]
known-first-party = ["pytestdornech"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.per-file-ignores]
# Allow print/pprint
"examples/*" = ["T201"]
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "TID252"]
#####################
# Environment Setup #
#####################
# Default environment with production dependencies
[tool.hatch.envs.default]
python = "3.11"
post-install-commands = ["pre-commit install"]
dependencies = []
# installer = "pip"
[tool.hatch.envs.hatch-uv]
dependencies = [
"uv>=0.5.9",
]
[tool.hatch.envs.hatch-test]
dependencies = [
"pip",
"coverage-enable-subprocess==1.0",
"coverage[toml]~=7.4",
"pytest~=8.1",
"pytest-mock~=3.12",
"pytest-randomly~=3.15",
"pytest-rerunfailures~=14.0",
"pytest-xdist[psutil]~=3.5",
]
[tool.hatch.envs.hatch-static-analysis]
# Test environment with test-only dependencies
[tool.hatch.envs.test]
dependencies = [
# required test dependencies
"pip",
"coverage[toml]>=6.2",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-vcr",
"pytest-sugar",
# additional test & development dependencies
]
[tool.hatch.envs.test.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/pytestdornech --cov=tests {args}"
no-cov = "cov --no-cov {args}"
debug = "cov --no-cov -s --pdb --pdbcls=IPython.core.debugger:Pdb {args}"
# Docs environment
[tool.hatch.envs.docs]
dependencies = [
"mkdocs~=1.6",
"mkdocs-material[imaging]~=9.4",
# Plugins
"mkdocs-include-markdown-plugin",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-minify-plugin~=0.8",
"mkdocs-section-index",
"mkdocs-git-revision-date-localized-plugin~=1.2",
"mkdocstrings[python]",
"mkdocs-redirects~=1.2",
"mkdocs-glightbox~=0.4.0",
"mike~=2.1",
# Extensionshatch
"pymdown-extensions~=10.9",
# Necessary for syntax highlighting in code blocks
"pygments~=2.18",
# Validation
"linkchecker~=10.4",
]
[tool.hatch.envs.docs.env-vars]
SOURCE_DATE_EPOCH = "1580601600"
PYTHONUNBUFFERED = "1"
MKDOCS_CONFIG = "mkdocs.yml"
[tool.hatch.envs.docs.scripts]
build = "mkdocs build --config-file {env:MKDOCS_CONFIG} --clean --strict {args}"
serve = "mkdocs serve --config-file {env:MKDOCS_CONFIG} --dev-addr localhost:8000 {args}"
ci-build = "mike deploy --config-file {env:MKDOCS_CONFIG} --update-aliases {args}"
# --ignore-url=None since the SUMMARY.md file leaves a <toc>None</toc> in sitemap.xml
validate = "linkchecker --config .linkcheckerrc --ignore-url=/reference --ignore-url=None site"
# https://github.com/linkchecker/linkchecker/issues/678
build-check = [
"build",
"validate",
]
# Lint environment
[tool.hatch.envs.lint]
template = "lint" # don't inherit from default!
dependencies = [
"pip",
"mypy==1.13.0",
"ruff==0.8.3"
]
[tool.hatch.envs.lint.scripts]
typing = [
"echo \"VERSION: `mypy --version`\"",
"mypy --install-types --non-interactive {args}"
]
style = [
"echo \"VERSION: `ruff --version`\"",
"ruff check {args:.}",
"ruff format --check {args:.}",
]
fix = [
"ruff format {args:.}",
"ruff check --fix {args:.}",
"style", # feedback on what is not fixable
]
all = [
"style",
"typing",
]
# Test matrix for various Python versions replacing the functionality of tox
[[tool.hatch.envs.test.matrix]]
template = ["test"]
python = ["39", "310", "311", "312", "313"]