-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
86 lines (77 loc) · 1.88 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
[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 = "quantecon_book_theme"
additional-compiled-static-assets = [
"locales/"
]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[project]
name = "quantecon-book-theme"
description = "A clean book theme for scientific explanations and documentation with Sphinx"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"pyyaml",
"sphinx>=4,<7",
"docutils",
"click",
"libsass~=0.20.1",
"sphinx_book_theme~=1.1.0",
"beautifulsoup4",
]
license = { file = "LICENSE" }
# TODO: Add email of the maintainer
maintainers = [
{ name = "Executable Books Team", email = "executablebooks@gmail.com" },
]
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]
code_style = [
"flake8<3.8.0,>=3.7.0",
"black",
"pre-commit"
]
doc = [
"folium",
"numpy",
"matplotlib",
"ipywidgets",
"pandas",
"nbclient",
"myst-nb",
"sphinx-togglebutton>=0.2.1",
"sphinx-thebe",
"sphinx-copybutton",
"docutils==0.17.1", # docutils 0.18, 0.19 need a patch fix https://sourceforge.net/p/docutils/patches/195/, un-pin when 0.20 is released
"plotly",
"sphinxcontrib-bibtex>=2.2.0,<=2.5.0",
]
test = [
"myst_nb",
"coverage",
"pytest",
"pytest-cov",
"beautifulsoup4",
"sphinx_thebe",
"pytest-regressions",
"sphinx_copybutton",
"sphinx_togglebutton",
]
[project.entry-points]
"sphinx.html_themes" = { quantecon_book_theme = "quantecon_book_theme" }
[project.urls]
Repository = "https://github.com/QuantEcon/quantecon-book-theme"