forked from basicinside/django-storages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.3 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
42
from setuptools import setup
import storages
def read(filename):
with open(filename) as f:
return f.read()
setup(
name='django-storages-redux',
version=storages.__version__,
packages=['storages', 'storages.backends', 'storages.management',
'storages.management.commands'],
author='Josh Schneier',
author_email='josh.schneier@gmail.com',
license='BSD',
description='Support for many storages (S3, MogileFS, etc) in Django.',
long_description=read('README.rst') + '\n\n' + read('CHANGELOG.rst'),
url='https://github.com/jschneier/django-storages',
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
tests_require=[
'Django>=1.5',
'pytest',
'mock',
'boto>=2.32.0'
],
test_suite='tests',
zip_safe=False
)