-
Notifications
You must be signed in to change notification settings - Fork 138
/
setup.py
46 lines (45 loc) · 1.38 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
from setuptools import setup
from io import open
from pytorch_sphinx_theme import __version__
setup(
name = 'pytorch_sphinx_theme',
version =__version__,
author = 'Shift Lab',
author_email= 'info@shiftlabny.com',
url="https://github.com/pytorch/pytorch_sphinx_theme",
docs_url="https://github.com/pytorch/pytorch_sphinx_theme",
description='PyTorch Sphinx Theme',
py_modules = ['pytorch_sphinx_theme'],
packages = ['pytorch_sphinx_theme'],
include_package_data=True,
zip_safe=False,
package_data={'pytorch_sphinx_theme': [
'theme.conf',
'*.html',
'static/css/*.css',
'static/js/*.js',
'static/fonts/*.*',
'static/images/*.*',
'theme_variables.jinja'
]},
entry_points = {
'sphinx.html_themes': [
'pytorch_sphinx_theme = pytorch_sphinx_theme',
]
},
license= 'MIT License',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Documentation"
],
install_requires=[
'sphinx'
]
)