-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.17 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
[build-system]
requires = ["flit_core>=3.9"]
build-backend = "flit_core.buildapi"
[project]
name = "pybind11_mkdoc"
description = "Generate documentation bindings for pybind11 modules."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Wenzel Jakob", email = "wenzel.jakob@epfl.ch" }
]
urls.homepage = "https://github.com/pybind/pybind11_mkdoc"
dependencies = ["clang"]
classifiers = [
"Development Status :: 3 - Alpha",
"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 :: Software Development :: Documentation",
"Operating System :: POSIX",
"Operating System :: MacOS"
]
dynamic = ["version"]
[dependency-groups]
test = [
"pytest",
"pybind11",
"pytest-forked",
]
dev = [{ include-group = "test" }]
[project.scripts]
pybind11-mkdoc = "pybind11_mkdoc:main"
[tool.flit.sdist]
include = ["tests/**/*.py", "tests/**/*.h", ".gitignore"]
[tool.ruff.lint]
ignore = ["S110", "BLE", "PLW2901", "PLW0603", "INP001"]