forked from dask/dask-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup
import versioneer
setup(
name="dask_sphinx_theme",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/dask/dask-sphinx-theme/",
license="BSD",
author="Dask Developers",
description="Dask theme for Sphinx",
long_description=open("README.rst").read(),
zip_safe=False,
packages=["dask_sphinx_theme"],
package_data={
"dask_sphinx_theme": [
"theme.conf",
"*.html",
"static/css/*.css",
"static/images/*.svg",
"static/images/*.ico",
"static/js/*.js",
"static/fonts/*.*",
"ext/*",
]
},
include_package_data=True,
# http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
entry_points={
"sphinx.html_themes": [
"dask_sphinx_theme = dask_sphinx_theme",
]
},
install_requires=open("requirements.txt").read().strip().split("\n"),
)