-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.89 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
[project]
name = "sphinx-rustdoc-postprocess"
dynamic = ["version"]
description = "Post-process sphinxcontrib-rust RST output, converting leftover markdown to proper RST via pandoc."
readme = "README.md"
authors = [
{ name = "Rohit Goswami", email = "[email protected]" }
]
requires-python = ">=3.10"
license = "MIT"
keywords = ["sphinx", "rustdoc", "rst", "markdown", "pandoc", "sphinxcontrib-rust"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
dependencies = ["sphinx>=7"]
[project.urls]
Homepage = "https://github.com/HaoZeke/sphinx-rustdoc-postprocess"
Repository = "https://github.com/HaoZeke/sphinx-rustdoc-postprocess"
Issues = "https://github.com/HaoZeke/sphinx-rustdoc-postprocess/issues"
Changelog = "https://github.com/HaoZeke/sphinx-rustdoc-postprocess/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/sphinx_rustdoc_postprocess/_version.py"
[dependency-groups]
dev = ["pytest>=8", "pytest-cov", "pytest-randomly", "ruff>=0.9"]
docs = ["sphinx>=8", "sphinx-autoapi>=3", "shibuya"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
exclude = ["src/sphinx_rustdoc_postprocess/_version.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.towncrier]
package = "sphinx_rustdoc_postprocess"
filename = "CHANGELOG.md"
directory = "news"