2016-04-11 23:54:31 +02:00
|
|
|
--- setup.py.orig
|
|
|
|
+++ setup.py
|
2017-06-14 23:35:14 +02:00
|
|
|
@@ -23,18 +23,18 @@ def find_version(*file_paths):
|
|
|
|
raise RuntimeError("Unable to find version string.")
|
2014-02-26 20:04:35 +01:00
|
|
|
|
|
|
|
|
2017-11-09 23:36:34 +01:00
|
|
|
-requires = ['botocore==1.7.43',
|
2016-11-17 09:54:46 +01:00
|
|
|
- 'colorama>=0.2.5,<=0.3.7',
|
2014-02-26 20:04:35 +01:00
|
|
|
- 'docutils>=0.10',
|
2016-06-21 14:34:42 +02:00
|
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
2016-12-15 14:42:20 +01:00
|
|
|
- 's3transfer>=0.1.9,<0.2.0',
|
|
|
|
- 'PyYAML>=3.10,<=3.12']
|
2017-11-09 23:36:34 +01:00
|
|
|
+#requires = ['botocore==1.7.43',
|
2016-11-17 09:54:46 +01:00
|
|
|
+# 'colorama>=0.2.5,<=0.3.7',
|
2014-02-26 20:04:35 +01:00
|
|
|
+# 'docutils>=0.10',
|
2016-06-21 14:34:42 +02:00
|
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
2016-12-15 14:42:20 +01:00
|
|
|
+# 's3transfer>=0.1.9,<0.2.0',
|
|
|
|
+# 'PyYAML>=3.10,<=3.12']
|
2014-02-26 20:04:35 +01:00
|
|
|
|
2015-07-31 13:39:24 +02:00
|
|
|
|
2016-12-15 14:42:20 +01:00
|
|
|
-if sys.version_info[:2] == (2, 6):
|
|
|
|
+#if sys.version_info[:2] == (2, 6):
|
|
|
|
# For python2.6 we have to require argparse since it
|
|
|
|
# was not in stdlib until 2.7.
|
|
|
|
- requires.append('argparse>=1.1')
|
|
|
|
+# requires.append('argparse>=1.1')
|
|
|
|
|
|
|
|
|
|
|
|
setup_options = dict(
|
2017-06-14 23:35:14 +02:00
|
|
|
@@ -51,12 +51,12 @@ setup_options = dict(
|
2014-02-26 20:04:35 +01:00
|
|
|
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
2015-05-28 00:33:00 +02:00
|
|
|
'examples/*/*/*.rst', 'topics/*.rst',
|
|
|
|
'topics/*.json']},
|
2014-02-26 20:04:35 +01:00
|
|
|
- install_requires=requires,
|
2015-10-10 05:04:46 +02:00
|
|
|
- extras_require={
|
|
|
|
- ':python_version=="2.6"': [
|
|
|
|
- 'argparse>=1.1',
|
|
|
|
- ]
|
|
|
|
- },
|
2014-02-26 20:04:35 +01:00
|
|
|
+# install_requires=requires,
|
2015-10-10 05:04:46 +02:00
|
|
|
+# extras_require={
|
|
|
|
+# ':python_version=="2.6"': [
|
|
|
|
+# 'argparse>=1.1',
|
|
|
|
+# ]
|
|
|
|
+# },
|
|
|
|
license="Apache License 2.0",
|
|
|
|
classifiers=(
|
|
|
|
'Development Status :: 5 - Production/Stable',
|