forked from peterhudec/foundation-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 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
33
from setuptools import setup, find_packages
setup(
name='foundation-sphinx-theme',
version='0.0.3',
packages=find_packages(),
package_data={'': ['*.txt', '*.rst', '*.html', '*.css', '*.js', '*.conf']},
author='Peter Hudec',
author_email='[email protected]',
description='',
long_description=open('README.rst').read(),
keywords=['sphinx', 'reStructuredText', 'theme', 'foundation'],
url='https://github.com/peterhudec/foundation-sphinx-theme',
license='MIT',
install_requires=['setuptools'],
classifiers=[
'Development Status :: 3 - Alpha',
"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",
"Topic :: Text Processing :: Markup",
],
entry_points={
'sphinx.html_themes': [
'foundation = foundation_sphinx_theme',
]
},
)