forked from gotlium/django-feedme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 945 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 945 Bytes
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
from setuptools import setup, find_packages
setup(
name='django-feedme',
version='1.1.0',
zip_safe = False,
packages=find_packages(exclude=['demo']),
include_package_data=True,
url='http://github.com/dstegelman/django-feedme',
license='MIT',
author='Derek Stegelman',
author_email='email@stegelman.com',
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,<6.0',
'django-bootstrap-static>=2.0,<3.0',
'hadrian>=1.1',
'lxml',
'django-infuse>=0.3',
]
)