-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
52 lines (47 loc) · 1.29 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
name = "blurb"
description = "Command-line tool to manage CPython Misc/NEWS.d entries."
readme = "README.md"
maintainers = [
{ name = "Python Core Developers", email = "[email protected]" },
]
authors = [
{ name = "Larry Hastings", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
"version",
]
optional-dependencies.tests = [
"pyfakefs",
"pytest",
"pytest-cov",
]
urls.Changelog = "https://github.com/python/blurb/blob/main/CHANGELOG.md"
urls.Homepage = "https://github.com/python/blurb"
urls.Source = "https://github.com/python/blurb"
scripts.blurb = "blurb.blurb:main"
[tool.hatch]
version.source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/blurb/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.pyproject-fmt]
max_supported_python = "3.13"