forked from suselrd/django-allmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 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
from setuptools import setup, find_packages
setup(
name="django-allmedia",
url="http://github.com/suselrd/django-allmedia/",
author="Susel Ruiz Duran",
version="1.0.20",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
description="All Media for Django (Images, Videos, Attachments)",
install_requires=['django>=1.6.1',
'django-allauth>=0.16.1',
'South==0.8.4',
'pytz==2013d',
'billiard==3.3.0.17',
'amqp==1.4.5',
'anyjson==0.3.3',
'kombu==3.0.15',
'celery>=3.1.4',
'Pillow',
'python-magic==0.4.6',
'google-api-python-client>=1.3.1'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
)