-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.07 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
[project]
name = "sphinx-c-autodoc"
version = "1.4.0"
description = "A sphinx autodoc extension for c modules"
authors = [
{name="Nick"}
]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx :: Extension",
"Operating System :: OS Independent",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
dependencies = [
"sphinx>=4.0",
"clang>=11",
"beautifulsoup4",
]
[project.urls]
repository = "https://github.com/speedyleion/sphinx-c-autodoc"
documentation = "https://sphinx-c-autodoc.readthedocs.io/en/latest/"
[project.scripts]
sphinx-c-apidoc = 'sphinx_c_autodoc.apidoc:main'
[tool.uv]
dev-dependencies= [
"black==24.10.0",
"pycodestyle==2.12.1",
"mypy==1.13.0",
"pytest==8.3.4",
"pytest-cov==6.0.0",
"sphinxcontrib-autoprogram==0.1.9",
"types-docutils==0.20.0.20240310",
"pylint==3.3.2",
"furo>=2024.0.0",
]
[build-system]
requires = ["flit_core ==3.10.1"]
build-backend = "flit_core.buildapi"