forked from myyasuda/sphinx_materialdesign_theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.28 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
from setuptools import setup
from sphinx_iowmd_theme import __version__
import os
base_dir = os.path.dirname(__file__)
with open(os.path.join(base_dir, "README.rst")) as f:
long_description = f.read()
setup(
name = 'sphinx_iowmd_theme',
version = __version__,
author = 'Brian Butler',
author_email= '[email protected]',
url="https://github.com/zaniphrom/sphinx_iowmd_theme",
docs_url="https://github.com/zaniphrom/sphinx_iowmd_theme",
description='Sphinx Material Design Theme',
long_description=long_description,
long_description_content_type="text/x-rst",
packages = ['sphinx_iowmd_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_iowmd_theme = sphinx_iowmd_theme',
]
}
)