-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.26 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
40
41
#!/usr/bin/env python
"""
Installation script:
To release a new version to PyPi:
- Ensure the version is correctly set in oscar.__init__.py
- Run: python setup.py sdist upload
"""
from setuptools import setup, find_packages
from rss2rest import get_version
setup(name='django-rss2rest',
version=get_version().replace(' ', '-'),
url='https://github.com/gump/rss2rest',
author="Michal Gump Szczesny",
author_email="[email protected]",
description="RSS scraper with immediate RESTful access to feed items",
long_description=open('README.md').read(),
keywords="Django, RSS, RESTful API",
license='BSD',
platforms=['linux'],
packages=find_packages(exclude=["sandbox*", "tests*"]),
include_package_data=True,
install_requires=[
'django>=1.4.1',
'django-tastypie>=0.9.11',
'feedparser>=5.1.2',
'python-dateutil>=2.1',
'south>=0.7.6',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python']
)