-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.88 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
[project]
name = "docleaf"
version = "0.8.3"
description = "Integrate your doxygen-generated technical documentation into Sphinx"
license = { file = "LICENSE.md" }
readme = "README.md"
requires-python = ">=3.7"
keywords = ["sphinx", "doxygen"]
authors = [
{ name = "Michael Jones", email = "michael.jones@docleaf.io" }
]
dependencies = [
"docutils>=0.12",
"Sphinx>=4.0,!=5.0.0"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Sphinx :: Extension",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
]
[project.urls]
homepage = "https://docleaf.io"
repository = "https://github.com/docleaf-labs/docleaf"
changelog = "https://github.com/docleaf-labs/docleaf/blob/main/CHANGELOG.md"
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
module-name = "docleaf.backend"
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
features = ["pyo3/extension-module"]
python-source = "src"
manifest-path = "rust/Cargo.toml"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
# Poetry - used for dev and must be kept in sync with the top sections until we abandon it or they update to
# support the use of the main [project] and dependencies information
[tool.poetry]
name = "docleaf"
version = "0.8.3"
description = "Integrate your doxygen-generated technical documentation into Sphinx"
license = "Parity-7.0.0"
readme = "README.md"
homepage = "https://docleaf.io"
keywords = ["sphinx", "doxygen"]
authors = [
"Michael Jones <michael.jones@docleaf.io>"
]
[tool.poetry.dependencies]
python = "^3.8"
docutils = ">=0.12"
Sphinx = ">=4.0,!=5.0.0"
[tool.poetry.group.dev.dependencies]
maturin = "^0.14.14"
flake8 = "^5.0.4"
pytest = "^7.1.3"
mypy = ">=0.900"
types-docutils = ">=0.14,<0.18"
types-Pygments = "^2.13.0"
black = ">=22.3.0"
ruff = "^0.0.278"