-
-
Notifications
You must be signed in to change notification settings - Fork 201
/
pyproject.toml
100 lines (92 loc) · 2.42 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["flit_core>=3.7"]
build-backend = "flit_core.buildapi"
# project metadata
[project]
name = "breathe"
description = "Sphinx Doxygen renderer"
readme = "README.rst"
urls.Changelog = "https://github.com/breathe-doc/breathe/blob/main/CHANGELOG.rst"
urls.Code = "https://github.com/breathe-doc/breathe/"
urls.Download = "https://pypi.org/project/breathe/"
urls.Documentation = "https://breathe.readthedocs.io/"
urls.Homepage = "https://www.breathe-doc.org/"
urls."Issue tracker" = "https://github.com/breathe-doc/breathe/issues"
license.text = "BSD-3-Clause"
requires-python = ">=3.9"
# Classifiers list: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = [
"Sphinx>=6.2",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"furo",
"sphinx-copybutton",
"sphinxcontrib-spelling",
]
lint = [
"black==22.3.0",
"flake8>=6.0",
"mypy>=1",
"types-docutils",
"types-Pygments",
"pytest>=8.0", # for mypy
]
test = [
"pytest>=8.0",
]
[[project.authors]]
name = "Michael Jones"
email = "[email protected]"
[project.scripts]
breathe-apidoc = "breathe.apidoc:main"
[tool.flit.module]
name = "breathe"
[tool.flit.sdist]
include = [
"LICENSE",
"CHANGELOG.rst",
"CONTRIBUTING.rst",
"CONTRIBUTORS.rst",
# Documentation
"documentation/",
# Tests
"tests/",
# Utilities
"Makefile",
"mkrelease",
]
exclude = [
"documentation/build",
]
[tool.black]
line-length = 100
extend-exclude = '''
^/breathe/parser/.*
'''