-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (33 loc) · 1.08 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
with open('README.rst') as f:
description = f.read()
setup(
name="djamazing",
version='0.1.0',
packages=find_packages(),
license='MIT',
author='SUNSCRAPERS',
author_email='[email protected]',
description='Safe storage for django using AWS S3+CloudFront',
long_description=description,
url='https://github.com/sunscrapers/djamazing',
install_requires=[
'boto3>=1.4.4',
'cryptography>=1.7.2',
'django-threadlocals>=0.8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: File Sharing',
],
)