-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.29 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "atsphinx-footnotes"
license = {file = "LICENSE"}
requires-python = ">= 3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation :: Sphinx",
]
readme = "README.rst"
dependencies = [
"sphinx",
]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/atsphinx/footnotes"
[dependency-groups]
dev = [
{include-group = "docs"},
{include-group = "test"},
"doc8>=1.1.2",
"esbonio>=0.16.5",
"ruff>=0.12.5",
"ty>=0.0.1a16",
]
docs = [
"atsphinx-mini18n>=0.4.1",
"furo>=2024.8.6",
"sphinx-intl>=2.2.0",
"sphinx-toolbox>=4.0.0",
]
test = [
"pytest ==8.*",
]
[tool.flit.module]
name = "atsphinx.footnotes"
[tool.flit.sdist]
exclude = [".github", "tests"]