forked from smore-inc/tinys3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 1.06 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
# -*- coding: utf-8 -*-
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = ['requests >= 1.2.0']
if sys.version_info < (3, 2):
install_requires.insert(0, 'futures >= 2.1.3')
setup(name='tinys3',
version='0.1.11',
description=("A small library for uploading files to S3,"
"With support of async uploads, worker pools, cache headers etc"),
author='Shlomi Atar',
author_email='[email protected]',
url='https://www.smore.com/labs/tinys3/',
packages=['tinys3'],
license='MIT',
classifiers=[
# make sure to use :: Python *and* :: Python :: 3 so
# that pypi can list the package on the python 3 page
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
platforms='Any',
keywords=('amazon', 'aws', 's3', 'upload'),
package_dir={'': '.'},
install_requires=install_requires,
tests_require=['nose', 'flexmock'],
test_suite='tinys3.tests'
)