forked from jupyter-book/jupyter-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
124 lines (115 loc) · 2.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "jupyter-book"
authors = [{name = "Executable Book Project", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]
keywords = [
"reproducible",
"science",
"environments",
"scholarship",
"notebook",
]
dynamic = ["description", "version"]
requires-python = ">=3.7"
dependencies = [
"click>=7.1,<9",
"docutils>=0.15,<0.19",
"Jinja2",
"jsonschema<5",
"linkify-it-py~=2.0.0",
"myst-nb~=0.17.1",
"pyyaml",
"sphinx>=4,<6",
"sphinx-comments",
"sphinx-copybutton",
"sphinx-external-toc~=0.3.1",
"sphinx-jupyterbook-latex~=0.5.2",
"sphinx-design~=0.3.0",
"sphinx-thebe~=0.2.0",
"sphinx-book-theme==0.4.0rc1",
"sphinx_togglebutton",
"sphinxcontrib-bibtex>=2.2.0,<=2.5.0",
"sphinx-multitoc-numbering~=0.1.3",
]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://executablebooks.org/"
Documentation = "https://jupyterbook.org"
Funding = "https://executablebooks.org"
Source = "https://github.com/executablebooks/jupyter-book/"
Tracker = "https://github.com/executablebooks/jupyter-book/issues"
[project.optional-dependencies]
code_style = ["pre-commit~=3.1"]
pdfhtml = ["pyppeteer"]
sphinx = [
"altair",
"bokeh",
"folium",
"ipywidgets",
"jupytext",
"matplotlib",
"nbclient",
"numpy",
"pandas",
"plotly",
"sphinx-click",
"sphinx-examples",
"sphinx_inline_tabs",
"sphinx-proof",
"sphinxext-rediraffe~=0.2.3",
"sympy",
]
testing = [
"altair",
"beautifulsoup4",
"beautifulsoup4",
"cookiecutter",
"coverage",
"jupytext",
"matplotlib",
"pyppeteer",
"pytest>=6.2.4",
"pytest-cov",
"pytest-regressions",
"pytest-timeout",
"pytest-xdist",
"sphinx_click",
"sphinx_tabs",
"texsoup",
]
[project.scripts]
jb = "jupyter_book.cli.main:main"
jupyter-book = "jupyter_book.cli.main:main"
[tool.flit.module]
name = "jupyter_book"
[tool.flit.sdist]
exclude = [
".*", # Any hidden folders or files
"docs/",
"tests/",
"scripts/",
"tox.ini",
"codecov.yml",
"conftest.py",
]
[tool.isort]
profile = "black"