forked from jazzband/django-queued-storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (21 loc) · 777 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
from setuptools import setup, find_packages
import queued_storage
setup(
name='django-queued-storage',
version=queued_storage.__version__,
description='Provides a proxy for django file storage, that allows you to upload files locally and eventually serve them remotely',
long_description = open('README.rst').read(),
author='Sean Brant, Josh VanderLinden',
author_email='[email protected]',
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Framework :: Django',
],
include_package_data=True,
install_requires=['django-celery>=2.3.3'],
zip_safe=False,
)