-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.61 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel", "toml"]
build-backend = "setuptools.build_meta"
[project]
name = "lobster-doxygen"
version = "1.0.1"
description = "Script to generate the lobster common interchange format from a doxygen XML output."
readme = "README.md"
requires-python = ">=3.10, <3.13"
authors = [
{ name = "Andreas Merkle", email = "andreas.merkle@newtec.de" },
{ name = "Dominik Knoll", email = "dominik.knoll@newtec.de"},
{ name = "Schulz Norbert", email = "norbert.schulz@newtec.de"},
]
license = "GPL-3.0-or-later"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"toml>=0.10.2",
"bmw-lobster==1.0.*",
"doxmlparser>=1.13.2",
"rich==14.0.0"
]
[project.optional-dependencies]
dev = [
"toml>=0.10.2",
"tomlkit>=0.13.2",
"pylint>=3.3.1",
"Sphinx>=8.1.3",
"sphinx-favicon>=1.0.1",
"sphinx-rtd-theme>=3.0.1",
"pyinstaller>=6.11.1",
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"myst-parser>=4.0.0",
"sphinxcontrib-plantuml>=0.30",
"m2r>=0.3.1",
"pyTRLCConverter==1.0.*",
]
[project.urls]
documentation = "https://github.com/NewTec-GmbH/lobster-doxygen"
repository = "https://github.com/NewTec-GmbH/lobster-doxygen"
tracker = "https://github.com/NewTec-GmbH/lobster-doxygen/issues"
[project.scripts]
lobster-doxygen = "lobster_doxygen.__main__:main"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.setuptools.package-data]
lobster_doxygen = ["pyproject.toml"]