forked from jschneier/django-storages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (37 loc) · 1.32 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()
def get_requirements_tests():
with open('requirements-tests.txt') as f:
return f.readlines()
setup(
name='django-storages',
version=storages.__version__,
packages=['storages', 'storages.backends'],
author='Josh Schneier',
author_email='[email protected]',
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',
'Programming Language :: Python :: 3.5',
],
tests_require=get_requirements_tests(),
test_suite='tests',
zip_safe=False
)