forked from speedyleion/sphinx-c-autodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.15 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
[tool.poetry]
name = "sphinx-c-autodoc"
version = "1.2.2"
description = "A sphinx autodoc extension for c modules"
authors = ["Nick <speedyleion@users.noreply.github.com>"]
license = "MIT License, The Unlicense (Unlicense)"
readme = "README.rst"
packages = [{include = "sphinx_c_autodoc", from = "src"}]
repository = "https://github.com/speedyleion/sphinx-c-autodoc"
documentation = "https://sphinx-c-autodoc.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx :: Extension",
"Operating System :: OS Independent",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.8"
sphinx = ">=3.1"
clang = ">=6"
beautifulsoup4 = "*"
furo = "^2023.5.20"
[tool.poetry.scripts]
sphinx-c-apidoc = 'sphinx_c_autodoc.apidoc:main'
[tool.poetry.group.dev.dependencies]
black = "23.7.0"
pycodestyle = "2.11.0"
mypy = "1.5.0"
pytest = "7.4.0"
pytest-cov = "4.1.0"
sphinxcontrib-autoprogram = "0.1.8"
types-docutils = "0.20.0.2"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"