-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
32 lines (30 loc) · 1.12 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
from setuptools import setup
from sphinx_materialdesign_theme import __version__
setup(
name = 'sphinx_materialdesign_theme',
version = __version__,
author = 'Masahiko Yasuda',
author_email= '[email protected]',
url="https://github.com/myyasuda/sphinx_materialdesign_theme",
docs_url="http://myyasuda.github.io/sphinx_materialdesign_theme/",
description='Sphinx Material Design Theme',
packages = ['sphinx_materialdesign_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_materialdesign_theme = sphinx_materialdesign_theme',
]
}
)