-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (80 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hatch-calver"
description = "Hatch plugin for CalVer versioning"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
dependencies = ["hatchling"]
dynamic = ["version"]
authors = [
{ name = "Aarni Koskela", email = "akx@iki.fi" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Hatch",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
]
[project.urls]
Repository = "https://github.com/akx/hatch-calver"
Issues = "https://github.com/akx/hatch-calver/issues"
PyPI = "https://pypi.org/project/hatch-calver/"
[project.entry-points.hatch]
calver = "hatch_calver.hatch_hooks"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
[tool.hatch.version]
path = "src/hatch_calver/__init__.py"
scheme = "calver"
calver-scheme = "YYYY.MM.DD"
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.ruff]
line-length = 110
[tool.ruff.lint]
select = [
"B",
"COM812",
"D",
"E",
"EM",
"F",
"I",
"PT",
"S",
"W",
"UP",
]
ignore = [
"D100",
"D101",
"D104",
"D211",
"D213",
"E501",
"TRY003",
]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*" = [
"D",
"ANN",
"S101",
]