-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
91 lines (83 loc) · 2.25 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"wheel",
]
[project]
name = "sphobjinv"
description = "Sphinx objects.inv Inspection/Manipulation Tool"
license = {text = "MIT License"}
authors = [{name = "Brian Skinn", email = "brian.skinn@gmail.com"}]
classifiers = [
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Environment :: Console",
"Framework :: Sphinx",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
"Development Status :: 5 - Production/Stable",
]
keywords = ["sphinx", "sphinx-doc", "inventory", "manager", "inspector"]
requires-python = ">=3.8"
dependencies = [
"attrs>=19.2",
"certifi",
"jsonschema>=3.0",
]
dynamic = ["version", "readme"]
[project.urls]
Homepage = "https://github.com/bskinn/sphobjinv"
Changelog = "https://github.com/bskinn/sphobjinv/blob/main/CHANGELOG.md"
Docs = "https://sphobjinv.readthedocs.io/en/stable/"
Thank = "https://fosstodon.org/@btskinn"
Donate = "https://github.com/sponsors/bskinn"
[project.scripts]
sphobjinv = "sphobjinv.cli.core:main"
[tool.setuptools]
package-dir = {"" = "src"}
platforms = ["any"]
license-files = ["LICENSE.txt"]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "sphobjinv.version.__version__"}
[tool.black]
line-length = 88
include = '''
(
^/tests/.*[.]py$
| ^/src/sphobjinv/.*[.]py$
| ^/setup[.]py
| ^/conftest[.]py
)
'''
exclude = '''
(
__pycache__
| ^/[.]
| ^/doc
| ^/env
| ^/src/sphobjinv/_vendored
)
'''
[tool.interrogate]
exclude = ["src/sphobjinv/_vendored"]
fail-under = 100
verbose = 1