-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
94 lines (86 loc) · 2.03 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx-hoverxref"
authors = [
{name = "Manuel Kaufmann", email = "[email protected]"}
]
description = "Sphinx extension to show tooltips with content embedded when hover a reference."
keywords=[
"tooltip",
"modal",
"hover",
"hoverxref",
"sphinx",
"documentation",
]
dependencies = [
"sphinx >=5.0",
"sphinxcontrib-jquery",
]
version = "1.4.2"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
[project.optional-dependencies]
test = [
"tox",
]
doc = [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
"sphinx-tabs",
"sphinx-prompt",
"sphinx-version-warning",
"sphinx-notfound-page",
"sphinx-autobuild",
# versions older than this don't pin
# docutils which is necessary for
# bibtex html rendering to work properly
"sphinxcontrib-bibtex>=2.6.0",
"sphinxemoji",
]
[project.urls]
Documentation = "https://sphinx-hoverxref.readthedocs.io/"
Source = "https://github.com/readthedocs/sphinx-hoverxref"
Tracker = "https://github.com/readthedocs/sphinx-hoverxref/issues"
[tool.flit.module]
name = "hoverxref"
[tool.flit.sdist]
exclude = [
"common",
"tests",
".circleci",
".github",
".gitignore",
".readthedocs.yml",
"pytest.ini",
"conftest.py",
"tox.ini",
]
[tool.bumpver]
current_version = "1.4.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Release {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]
"hoverxref/__init__.py" = [
'__version__ = "{version}"',
]