-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
78 lines (66 loc) · 2.08 KB
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
[project]
name = "python-dispatch-sphinx"
version = "0.2.2"
description = "Sphinx extension for python-dispatch"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Matthew Reid", email = "matt@nomadic-recording.com" }
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Documentation"
]
dependencies = [
"sphinx<5.0.0",
"sphinxcontrib-applehelp<=1.0.3",
"sphinxcontrib-devhelp<=1.0.6",
"sphinxcontrib-htmlhelp<=2.0.1",
"sphinxcontrib-serializinghtml<=1.1.6",
"sphinxcontrib-qthelp<=1.0.3",
"standard-imghdr; python_version >= '3.13'",
"python-dispatch>=0.2.2",
"importlib-metadata; python_version < '3.8'"
]
[project.urls]
Documentation = "https://python-dispatch.readthedocs.io/"
Source = "https://github.com/nocarryr/python-dispatch"
Download = "https://pypi.org/project/python-dispatch-sphinx/"
Tracker = "https://github.com/nocarryr/python-dispatch/issues"
[build-system]
requires = ["uv_build>=0.9.16,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "pydispatch_sphinx"
[tool.uv.sources]
python-dispatch-sphinx = { workspace = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
test = [
"coveralls>=3.3.1",
"pytest>=7.0.1",
"pytest-cov>=4.0.0",
"sphinx-rst-builder>=0.0.3",
]
dev = [
{include-group = "test"},
]