-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
407 lines (365 loc) · 11.6 KB
/
pyproject.toml
File metadata and controls
407 lines (365 loc) · 11.6 KB
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
#########################
# Build System Settings #
#########################
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
####################
# Project Metadata #
####################
[project]
name = "utils-COMobjects"
description = "Package with various utilities to support COM object development with Python based on PyWin32"
readme = "README.md"
requires-python = ">=3.10"
# only license identifier from https://spdx.org/licenses/ are allowed
license = { text = "GPL-3.0-only" }
# keywords for easier look-up on PyPI
keywords = ["PyWin32", "COM", "COM objects"]
authors = [
{ name = "dornech", email = "dornech@gmx.de" },
]
# options under https://pypi.org/classifiers/
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
# direct dependencies of this package, installed when users `pip install utils-COMobjects` later.
dependencies = [
"pywin32",
"utils_mystuff"
]
dynamic = ["version"]
[project.optional-dependencies]
# n. a.
[project.scripts]
# n. a.
[project.urls]
# important URLs for this project
Documentation = "https://dornech.github.io/utils-COMobjects"
Source = "https://github.com/dornech/utils-COMobjects"
Tracker = "https://github.com/dornech/utils-COMobjects/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"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
local_scheme = "dirty-tag"
[tool.hatch.build]
packages = ["src/utils_COMobjects"]
# [tool.hatch.build.hooks.vcs]
# version-file = "src/utils_COMobjects/_version.py"
[tool.hatch.build.targets.sdist]
artifacts = ["_version.py"]
exclude = [
"/.github",
]
[tool.commitizen]
name = "cz_customize"
version_scheme = "pep440"
version = "1.0.0"
version_files = ["pyproject.toml:version"]
tag_format = "v$version"
# retry_after_failure = false
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
template = "changelog_commitizen-template.md.j2"
post_bump_hooks = [
"echo %CZ_POST_CURRENT_TAG_VERSION% pushed to remote GitHub repository",
"git push origin HEAD",
"git push origin %CZ_POST_CURRENT_TAG_VERSION%",
]
[tool.commitizen.customize]
message_template = "{% if scope %} '{{ change_type }}({{ scope }}): {{ message }}' {% else %} '{{ change_type }}: {{ message }}'"
example = "'feat: add new endpoint'or 'feat(api): add new endpoint'"
schema = "'<type>: <subject>' or '<type>(<scope>): <subject>'"
schema_pattern = "(bump|feat|fix|docs|style|refactor|perf|test|chore|build|deps|ci|revert)(\\([^)]+\\))?:\\s.*"
bump_pattern = "^(feat|fix|BREAKING CHANGE)"
bump_map = {"feat" = "MINOR", "fix" = "PATCH", "BREAKING CHANGE" = "MAJOR"}
# user defined changelog format - standard semantic-release + commit-sha and commit-url
# w/o Initial Commit in changelog
# commit_parser = "^(?P<change_type>feat|fix|refactor|perf|docs|style|test|chore|build|ci|revert|BREAKING CHANGE)(\\((?P<scope>[^)]+)\\))?:\\s(?P<message>.*)"
# changelog_pattern = "^(feat|fix|docs|style|refactor|perf|test|chore|build|ci|revert|BREAKING CHANGE).*"
# with Initial Commit in changelog
commit_parser ="^(?P<change_type>[Ii]nitial [Cc]ommit|feat|fix|refactor|perf|docs|style|test|chore|build|ci|revert|BREAKING CHANGE)(\\((?P<scope>[^)]+)\\))?(:\\s(?P<message>.*))?"
changelog_pattern = "^([Ii]nitial [Cc]ommit|feat|fix|docs|style|refactor|perf|test|chore|build|ci|revert|BREAKING CHANGE).*"
change_type_map = { feat = "Features", fix = "Bug fixes", refactor = "Refactoring", perf = "performance improvements", docs = "Documentation", style = "Code style", test = "Testing", chore = "Chores", build = "Build system", ci = "Continuous Integration" }
change_type_order = ["BREAKING CHANGE", "feat", "fix", "refactor", "perf", "docs", "style", "test", "chore", "build", "ci"]
##################
# External Tools #
##################
[tool.docsig]
check-class = false
check-class-constructor = true
check-dunders = false
check-nested = false
check-overridden = true
check-protected = false
check-protected-class-methods = false
ignore-args = false
ignore-kwargs = false
ignore-no-params = true
ignore_typechecker= false
# disable = []
# target = []
[tool.ruff]
# ruff will use `requires-python` as `target-version` by default
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",
]
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
"RUF100", # Automatically remove unused # noqa directives
]
unfixable = [
# "F401", # Don't touch unused imports
]
exclude = ["__init__.py", "_version.py"]
[tool.ruff.lint.isort]
known-first-party = ["utils_COMobjects"]
[tool.ruff.lint.flake8-quotes]
# inline-quotes = "single"
inline-quotes = "double"
[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"]
# ignore empty lines and naming conventions in source
# "src/*.py" = ["E302", "E303", "N801", "N802", "N803", "N806", "N812", "N813", "N815", "N816", "N818", "N999"]
[tool.ruff.format]
preview = true # Enable preview style formatting.
# quote-style = "single"
quote-style = "double"
docstring-code-format = true
exclude = ["__init__.py", "_version.py"]
[tool.mypy]
files = ["src/utils_COMobjects", "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
warn_return_any = true
warn_unused_configs = true
[tool.cruft]
skip = ["README.md", "CHANGELOG.MD", "src/", "tests/", "docs/", "notebooks/"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --doctest-glob='*.md'"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["src/utils_COMobjects"]
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:",
]
#####################
# Environment Setup #
#####################
# Hatch default environment
[tool.hatch.envs.default]
# python = "3.9"
post-install-commands = ["pre-commit install", "pre-commit install --hook-type commit-msg"]
dependencies = [
"pre-commit",
"commitizen",
]
# installer = "pip"
# Hatch default test environment for "hatch test" (also used in GitAction)
[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",
]
# Test environment with test-only dependencies (do not mix up with default hatch-test environment "hatch-test" !)
[tool.hatch.envs.test]
dependencies = [
# required test dependencies
"pip",
"coverage[toml]>=7.4",
"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/utils_COMobjects --cov=tests {args}"
no-cov = "cov --no-cov {args}"
debug = "cov --no-cov -s --pdb --pdbcls=IPython.core.debugger:Pdb {args}"
# Hatch testing environment matrix for various Python versions replacing the functionality of tox
[[tool.hatch.envs.test.matrix]]
template = ["test"]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
# Hatch default linting environment for "hatch fmt"
[tool.hatch.envs.hatch-static-analysis]
dependencies = [
"pip",
"mypy==1.16.0",
"ruff==0.11.12",
]
# Hatch Linting environment for GitAction
[tool.hatch.envs.lint]
template = "lint" # don't inherit from default!
dependencies = [
"pip",
"mypy==1.16.0",
"ruff==0.11.12",
"docsig==0.71.0",
]
[tool.hatch.envs.lint.scripts]
typing = [
"mypy --version",
"mypy --install-types --non-interactive {args}"
]
style = [
"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",
"docsig src",
]
# Hatch environment for building documentation
[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",
# Extensions Hatch
"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",
]