forked from executablebooks/sphinx-book-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (73 loc) · 2.24 KB
/
setup.py
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
from setuptools import setup, find_packages
from pathlib import Path
lines = Path("sphinx_book_theme").joinpath("__init__.py")
for line in lines.read_text().split("\n"):
if line.startswith("__version__ ="):
version = line.split(" = ")[-1].strip('"')
break
setup(
name="sphinx-book-theme",
version=version,
python_requires=">=3.6",
author="Project Jupyter Contributors",
author_email="[email protected]",
url="https://jupyterbook.org/",
project_urls={
"Documentation": "https://jupyterbook.org",
"Funding": "https://jupyter.org/about",
"Source": "https://github.com/jupyter/jupyter-book/",
"Tracker": "https://github.com/jupyter/jupyter-book/issues",
},
# this should be a whitespace separated string of keywords, not a list
keywords="reproducible science environments scholarship notebook",
description="Jupyter Book: Create an online book with Jupyter Notebooks",
long_description=open("./README.md", "r").read(),
long_description_content_type="text/markdown",
license="BSD",
packages=find_packages(),
install_requires=[
"pyyaml",
"docutils>=0.15",
"sphinx",
"click",
"setuptools",
"libsass",
"pydata-sphinx-theme~=0.3.0",
],
extras_require={
"code_style": ["flake8<3.8.0,>=3.7.0", "black", "pre-commit==1.17.0"],
"sphinx": [
"folium",
"numpy",
"matplotlib",
"ipywidgets",
"pandas",
"nbclient",
"myst-parser",
"myst-nb",
"sphinx-togglebutton",
"sphinx-copybutton",
"plotly",
"sphinxcontrib-bibtex",
"sphinx-thebelab",
],
"testing": [
"coverage",
"pytest>=3.6,<4",
"pytest-cov",
"beautifulsoup4",
"pytest-regressions",
],
},
entry_points={"sphinx.html_themes": ["sphinx_book_theme = sphinx_book_theme"]},
package_data={
"sphinx_book_theme": [
"theme.conf",
"*.html",
"static/*",
"static/images/*",
"topbar/*.html",
]
},
include_package_data=True,
)