-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (38 loc) · 1.31 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
39
from setuptools import setup, find_packages
setup(
name='django-feedparser',
version=__import__('django_feedparser').__version__,
description=__import__('django_feedparser').__doc__,
long_description=open('README.rst').read(),
author='David Thenon',
author_email='[email protected]',
url='https://github.com/sveetch/django-feedparser',
license='MIT',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'six',
'requests>=2.7.0',
'feedparser>=5.1.3',
],
include_package_data=True,
zip_safe=False
)