-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 906 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
from setuptools import setup, find_packages
setup(
name='django-feedme',
version='0.3.1',
packages=find_packages(exclude=['demo']),
zip_safe=False,
include_package_data=True,
url='http://github.com/dstegelman/django-feedme',
license='MIT',
author='Derek Stegelman',
author_email='[email protected]',
description='Django Google Reader Replacement',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
"Framework :: Django",
],
install_requires=[
'feedparser==5.1.3',
'django-bootstrap-static==2.3.1',
'hadrian==1.1.5',
'lxml',
]
)