-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 779 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 779 Bytes
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
from setuptools import setup
import versioneer
setup_args = dict(
name='sphinx_ioam_theme',
version=versioneer.get_version(),
url="https://github.com/ioam/sphinx_ioam_theme",
description="For nbsite",
license="BSD-3",
zip_safe=False,
packages=['sphinx_ioam_theme'],
package_data={'sphinx_ioam_theme': [
'theme.conf',
'*.html',
'includes/*.html',
'static/css/*.css',
'static/js/*.js',
'static/images/*.*'
]},
include_package_data=True,
entry_points = {
'sphinx.html_themes': [
'sphinx_ioam_theme = sphinx_ioam_theme',
]
},
python_requires = ">=2.7",
install_requires =[
"sphinx"
]
)
if __name__=="__main__":
setup(**setup_args)