-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.18 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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-visualized"
description = "Visualization generator for Sphinx"
authors = [
{name = "Jared Dillard", email = "jared.dillard@gmail.com"},
]
maintainers = [
{name = "Jared Dillard", email = "jared.dillard@gmail.com"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Documentation :: Sphinx",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Sphinx :: Extension",
]
license = {text = "MIT"}
readme = "README.md"
dynamic = [
"version",
"dependencies",
"optional-dependencies",
]
[project.urls]
documentation = "https://sphinx-visualized.readthedocs.io/en/latest/index.html"
download = "https://pypi.org/project/sphinx-visualized/"
source = "https://github.com/jdillard/sphinx-visualized"
changelog = "https://github.com/jdillard/sphinx-visualized/blob/master/CHANGELOG.rst"
[tool.setuptools.dynamic]
optional-dependencies = {dev = { file = ["requirements_dev.txt"] }}
[tool.isort]
profile = "black"