forked from sphinx-contrib/sphinx-pretty-searchresults
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 840 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
import codecs, setuptools
setuptools.setup(
name='sphinxprettysearchresults',
packages=['sphinxprettysearchresults'],
version='0.3.5',
description='Decently styled search results for sphinx-doc projects',
author='Timotheus Kampik',
author_email='[email protected]',
url='https://github.com/TimKam/sphinx-pretty-searchresults',
platforms=["any"],
license="MIT",
zip_safe=False,
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Documentation",
],
long_description=codecs.open("README.rst", "r", "utf-8").read(),
)