-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
98 lines (88 loc) · 2.39 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
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
"wheel",
]
[project]
name = "sphobjinv"
description = "Sphinx objects.inv Inspection/Manipulation Tool"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [{name = "Brian Skinn", email = "brian.skinn@gmail.com"}]
classifiers = [
"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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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.10"
dependencies = [
"attrs>=19.2",
"certifi",
"jsonschema>=3.1.1",
]
dynamic = ["version", "readme"]
[project.urls]
Changelog = "https://github.com/bskinn/sphobjinv/blob/main/CHANGELOG.md"
Docs = "https://sphobjinv.readthedocs.io/en/stable/"
Donate = "https://github.com/sponsors/bskinn"
Homepage = "https://github.com/bskinn/sphobjinv"
Thank = "https://fosstodon.org/@btskinn"
[project.scripts]
sphobjinv = "sphobjinv.cli.core:main"
sphobjinv-textconv = "sphobjinv.cli.core:main_textconv"
[tool.setuptools]
package-dir = {"" = "src"}
platforms = ["any"]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "sphobjinv.version.__version__"}
[tool.black]
target-version = ["py313"]
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
[tool.isort]
profile = "black"
known_first_party = ["sphobjinv", "tests"]
no_lines_before = ["LOCALFOLDER"]
extend_skip = ["src/sphobjinv/_vendored"]