forked from myyasuda/sphinxbootstrap4theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 915 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
from setuptools import setup
setup(
name = 'sphinxbootstrap4theme',
version = '0.6.0',
author = 'Masahiko Yasuda',
author_email= '[email protected]',
url="https://github.com/myyasuda/sphinxbootstrap4theme",
docs_url="http://myyasuda.github.io/sphinxbootstrap4theme/",
description='Sphinx Bootstrap4 Theme',
py_modules = ['sphinxbootstrap4theme'],
packages = ['themes'],
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"
],
)