forked from uni-passau-artemis/artemis-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (60 loc) · 1.27 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
# SPDX-FileCopyrightText: 2024 Artemis Changelog Contributors
#
# SPDX-License-Identifier: EUPL-1.2
[project]
name = "artemis-changelog"
version = "0.1.0"
description = ""
requires-python = ">=3.12"
authors = [
{ name = "Benedikt Fein", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
]
dependencies = [
"gitpython>=3.1.43",
"jinja2>=3.1.5",
"more-itertools>=10.5.0",
"semver>=3.0.2",
]
[dependency-groups]
dev = [
"isort>=5.13.2",
"mypy>=1.14.1",
"pre-commit>=4.0.1",
"pyre-check>=0.9.23",
"pyupgrade>=3.19.1",
"reuse>=5.0.2",
"ruff>=0.8.4",
]
[tool.isort]
profile = "black"
[tool.mypy]
[[tool.mypy.overrides]]
module = "semver"
ignore_missing_imports = true
[tool.ruff]
line-length = 88
target-version = "py312"
output-format = "full"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"E501", # line length managed by formatter
"ISC001", # conflict with formatter
"COM812" # trailing comma managed by formatter
]
exclude = [
"docs",
".venv",
"venv",
".mypy_cache",
".pytest_cache",
]
[tool.ruff.lint.mccabe]
max-complexity = 10
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"