-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
76 lines (70 loc) · 1.87 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx-build-compatibility"
authors = [
{name = "Manuel Kaufmann", email = "[email protected]"}
]
description = "Sphinx extension to keep Read the Docs compatibility"
keywords=[
"read-the-docs",
"compatibility",
]
dependencies = [
"sphinx>=5",
"requests",
# TODO: do we need this extension for some reason?
# "readthedocs-sphinx-ext",
]
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"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.urls]
Source = "https://github.com/readthedocs/sphinx-build-compatibility"
Tracker = "https://github.com/readthedocs/sphinx-build-compatibility/issues"
[tool.flit.module]
name = "sphinx_build_compatibility"
[tool.flit.sdist]
exclude = [
"common",
"tests",
".circleci",
".github",
".gitignore",
".readthedocs.yaml",
"pytest.ini",
"conftest.py",
"tox.ini",
]
[tool.bumpver]
current_version = "0.0.1"
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}"',
]
"sphinx_build__compatibility/__init__.py" = [
'__version__ = "{version}"',
]