forked from pydata/pydata-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 761 Bytes
/
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
"""Sphinx Bootstrap Theme package."""
from setuptools import setup
setup(
name="pandas-sphinx-theme",
version="0.0.1.dev0",
description="Sphinx Bootstrap Theme - pandas version.",
url="https://github.com/pandas-dev/pandas-sphinx-theme",
#
packages=["pandas_sphinx_theme"],
package_data={
"pandas_sphinx_theme": [
"theme.conf",
"*.html",
"static/css/*.css",
"static/js/*.js",
"static/img/*",
]
},
include_package_data=True,
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
entry_points={"sphinx.html_themes": ["pandas_sphinx_theme = pandas_sphinx_theme"]},
install_requires=["sphinx"],
)