forked from pydata/pydata-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (80 loc) · 1.77 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
[build-system]
requires = ["sphinx-theme-builder >= 0.2.0a7"]
build-backend = "sphinx_theme_builder"
[tool.sphinx-theme-builder]
node-version = "16.13.2"
theme-name = "pydata_sphinx_theme"
additional-compiled-static-assets = [
"webpack-macros.html",
"vendor/",
"styles/bootstrap.css",
"scripts/bootstrap.js"
]
[project]
name = "pydata-sphinx-theme"
description = "Bootstrap-based Sphinx theme from the PyData community"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"sphinx>=4.2",
"beautifulsoup4",
"docutils!=0.17.0",
"packaging",
"pygments>=2.7"
]
license = { file = "LICENSE" }
maintainers = [
{ name = "Joris Van den Bossche", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
doc = [
"numpydoc",
"myst-nb",
"linkify-it-py", # for link shortening
"pytest",
"pytest-regressions",
"rich",
"sphinxext-rediraffe",
"sphinx-sitemap",
# For examples section
"ablog",
"jupyter_sphinx",
"pandas",
"plotly",
"matplotlib",
"numpy",
"xarray",
"sphinx-copybutton",
"sphinx-design",
"sphinx-togglebutton",
# Install nbsphinx in case we want to test it locally even though we can't load
# it at the same time as MyST-NB.
"nbsphinx"
]
test = [
"pytest",
"pydata-sphinx-theme[doc]",
]
coverage = [
"pytest-cov",
"codecov",
"colorama",
"pydata-sphinx-theme[test]",
]
dev = [
"pyyaml",
"pre-commit",
"nox",
"pydata-sphinx-theme[coverage]",
]
[project.entry-points]
"sphinx.html_themes" = { pydata_sphinx_theme = "pydata_sphinx_theme" }