-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
89 lines (81 loc) · 1.96 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx-notfound-page"
authors = [
{name = "Manuel Kaufmann", email = "[email protected]"}
]
description = "Sphinx extension to build a 404 page with absolute URLs"
keywords=[
"notfound",
"404",
"page",
"sphinx",
"documentation",
]
dependencies = [
"sphinx>=5",
]
version = "1.0.4"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
[project.optional-dependencies]
test = [
"tox",
]
doc = [
"sphinx-tabs",
"sphinx-rtd-theme",
"sphinxemoji",
"sphinx-autoapi",
]
[project.urls]
Documentation = "https://sphinx-notfound-page.readthedocs.io/"
Source = "https://github.com/readthedocs/sphinx-notfound-page"
Tracker = "https://github.com/readthedocs/sphinx-notfound-page/issues"
[tool.flit.module]
name = "notfound"
[tool.flit.sdist]
exclude = [
"common",
"tests",
".circleci",
".github",
".gitignore",
".readthedocs.yml",
"pytest.ini",
"conftest.py",
"tox.ini",
]
[tool.bumpver]
current_version = "1.0.4"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Release {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]
"notfound/__init__.py" = [
'__version__ = "{version}"',
]