forked from myyasuda/sphinx_materialdesign_theme
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 1013 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
26
27
28
29
30
from setuptools import setup
from sphinx_symbiflow_theme import __version__
setup(
name = 'sphinx_symbiflow_theme',
version = __version__,
author = 'Based on theme by Masahiko Yasuda',
url="https://github.com/SymbiFlow/sphinx_symbiflow_theme",
description='Sphinx Symbiflow Theme',
packages = ['sphinx_symbiflow_theme'],
include_package_data=True,
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"
],
entry_points = {
'sphinx.html_themes': [
'sphinx_symbiflow_theme = sphinx_symbiflow_theme',
]
}
)