generated from thclark/python-library-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.66 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
[tool.poetry]
name = "sphinx-charts"
version = "0.2.1"
description = "Interactive charts, graphs and figures for Sphinx HTML docs."
authors = ["thclark"]
license = "MIT"
readme = "README.md"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Plugins",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Documentation :: Sphinx",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Utilities",
]
repository = "https://github.com/thclark/sphinx-charts"
keywords = ["sphinx", "charts", "python", "docs", "plotly", "graphs", "figures", "plot", "d3"]
packages = [{ include = "sphinx_charts" },]
[tool.poetry.dependencies]
python = "^3.7"
sphinx = {version = ">=4,<5", optional = true}
sphinx-rtd-theme = {version = "1.0.0", optional = true}
sphinx-tabs = {version = "3.2.0", optional = true}
sphinx-math-dollar = {version = "1.2.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
tox = "^3.24.5"
tox-gh-actions = "^2.9.1"
tox-poetry = "^0.4.1"
pre-commit = "^2.17.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-tabs", "sphinx-math-dollar"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"