-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
78 lines (69 loc) · 2.08 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
[build-system]
requires = [
# Keep this aligned with the project dependencies.
"setuptools >= 61.0",
"tomli; python_version < '3.11'",
]
backend-path = [".", "./src"] # See _build_meta.py
build-backend = "_build_meta:build_meta"
[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 = [
"setuptools >= 61.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.setuptools.dynamic]
version = {attr = "incremental._setuptools_version"}
[tool.incremental]
[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}>`__"