2016-04-14 11:07:13 +00:00
|
|
|
--- setup.py.orig
|
|
|
|
+++ setup.py
|
|
|
|
@@ -10,15 +10,15 @@ ROOT = os.path.dirname(__file__)
|
|
|
|
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
|
|
|
|
|
|
|
|
|
|
|
|
-requires = [
|
|
|
|
- 'botocore>=1.3.0,<2.0.0',
|
|
|
|
-]
|
|
|
|
+#requires = [
|
|
|
|
+# 'botocore>=1.3.0,<2.0.0',
|
|
|
|
+#]
|
|
|
|
|
|
|
|
|
|
|
|
-if sys.version_info[0] == 2:
|
2017-01-20 12:08:11 +00:00
|
|
|
- # concurrent.futures is only in python3, so for
|
|
|
|
- # python2 we need to install the backport.
|
2016-04-14 11:07:13 +00:00
|
|
|
- requires.append('futures>=2.2.0,<4.0.0')
|
2017-01-20 12:08:11 +00:00
|
|
|
+#if sys.version_info[0] == 2:
|
|
|
|
+# # concurrent.futures is only in python3, so for
|
|
|
|
+# # python2 we need to install the backport.
|
2016-04-14 11:07:13 +00:00
|
|
|
+# requires.append('futures>=2.2.0,<4.0.0')
|
|
|
|
|
|
|
|
|
|
|
|
def get_version():
|
2017-01-20 12:08:11 +00:00
|
|
|
@@ -36,7 +36,7 @@ setup(
|
2016-04-14 11:07:13 +00:00
|
|
|
url='https://github.com/boto/s3transfer',
|
|
|
|
packages=find_packages(exclude=['tests*']),
|
2017-01-20 12:08:11 +00:00
|
|
|
include_package_data=True,
|
2016-04-14 11:07:13 +00:00
|
|
|
- install_requires=requires,
|
|
|
|
+# install_requires=requires,
|
2017-01-20 12:08:11 +00:00
|
|
|
extras_require={
|
|
|
|
':python_version=="2.6" or python_version=="2.7"': [
|
|
|
|
'futures>=2.2.0,<4.0.0']
|