-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "breathing_cat"
dynamic = ["version"]
description = "Tool to build documentation for C++/Python-Packages used at MPI-IS"
authors = [
{name = "Maximilien Naveau"},
{name = "Felix Widmaier"},
]
maintainers = [
{name = "Felix Widmaier", email = "[email protected]"}
]
readme = "README.md"
keywords = ["documentation", "sphinx", "doxygen"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
]
requires-python = ">=3.8"
dependencies = [
"breathe",
"myst-parser",
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-moderncmakedomain",
"variconf[toml]",
]
[project.urls]
"Source Code" = "https://github.com/machines-in-motion/breathing-cat"
"Bug Tracker" = "https://github.com/machines-in-motion/breathing-cat/issues"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
bcat = "breathing_cat.__main__:main"
[tool.setuptools.package-data]
breathing_cat = ["resources/**/*.in"]
[tool.setuptools_scm]
# nothing to configure here, but section needs to exist to enable setuptools_scm