-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
98 lines (87 loc) · 2.41 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
[build-system]
requires = ["hatchling>=1.6.0"]
build-backend = "hatchling.build"
[project]
name = "Incremental"
dynamic = ["version"]
maintainers = [
{name = "Amber Brown", email = "[email protected]"},
{name = "Tom Most", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Framework :: Hatch",
"Framework :: Setuptools Plugin",
"Programming Language :: Python :: 3",
"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",
]
requires-python = ">=3.8"
description = "A CalVer version manager that supports the future."
readme = "README.rst"
dependencies = [
"packaging >= 17.0",
"tomli; python_version < '3.11'",
]
[project.optional-dependencies]
scripts = [
# This extra remains for backwards compatibility.
]
[project.urls]
Homepage = "https://github.com/twisted/incremental"
Documentation = "https://twisted.org/incremental/docs/"
Issues = "https://github.com/twisted/incremental/issues"
Changelog = "https://github.com/twisted/incremental/blob/trunk/NEWS.rst"
[project.scripts]
incremental = "incremental.update:_main"
[project.entry-points."distutils.setup_keywords"]
use_incremental = "incremental:_get_distutils_version"
[project.entry-points."setuptools.finalize_distribution_options"]
incremental = "incremental:_get_setuptools_version"
[project.entry-points.hatch]
incremental = "incremental._hatch"
[tool.hatch.build.targets.sdist]
include = [
"/src/incremental",
"/tests",
"/NEWS.rst",
"/LICENSE",
"/NEWS.rst",
"/SECURITY.md",
"/.coveragerc",
"/tox.ini",
"/requirements_*.in",
"/requirements_*.txt",
]
exclude = [
"/src/incremental/newsfragments",
"/tests/example_*/src/*.egg-info",
"/tests/example_*/build",
"/tests/example_*/dist",
]
[tool.hatch.build.targets.wheel]
packages = ["src/incremental"]
[tool.hatch.version]
source = "code"
search-paths = ["src"]
expression = "__version__.public()"
path = "src/incremental/_version.py"
[tool.ruff.lint]
select = [
"E",
"F",
"UP",
"I",
]
ignore = [
"E501",
]
[tool.towncrier]
filename = "NEWS.rst"
package_dir = "src/"
package = "incremental"
issue_format = "`#{issue} <https://github.com/twisted/incremental/issues/{issue}>`__"