-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (31 loc) · 919 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
27
28
29
30
31
32
33
34
from distutils.core import setup
long_desc = open('README.rst').read()
requires = [
'Sphinx>=0.6',
'feedformatter',
]
setup(
name='sphinxfeed',
version='0.3',
license='BSD',
author='junkafarian',
author_email='[email protected]',
url='https://github.com/junkafarian/sphinxfeed',
description='Sphinx extension for generating RSS feeds',
long_description=long_desc,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
py_modules=['sphinxfeed'],
include_package_data=True,
install_requires=requires,
)