-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.38 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
[build-system]
requires = ["setuptools"]
[project]
name = 'inline_reference'
version = "1.0.0"
authors = [
{name = "Rastislav Turanyi", email = "[email protected]"},
]
maintainers = [
{name = "Rastislav Turanyi", email = "[email protected]"},
]
description = "Sphinx extension for creating cross-reference links to arbitrary inline text"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"Python",
"docs",
"documentation",
"sphinx",
"sphinx-extension",
"inline cross-reference",
"inline reference",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx :: Domain",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation :: Sphinx"
]
dependencies = [
"sphinx >= 6.0.0",
]
[project.optional-dependencies]
test = [
"pytest >= 8.3.2",
]
docs = [
"sphinx_rtd_theme >= 3.0.2",
"numpydoc >= 1.8.0",
]
[project.urls]
Repository = "https://github.com/pace-neutrons/inline_reference"
Documentation = "https://pace-neutrons.github.io/inline_reference/"
Homepage = "https://pace-neutrons.github.io/inline_reference/"
Issues = "https://github.com/pace-neutrons/inline_reference/issues"