2018-08-13 18:57:18 +02:00
|
|
|
--- setup.py.orig 2018-08-10 22:13:09.000000000 +0200
|
|
|
|
+++ setup.py 2018-08-13 16:41:02.210656456 +0200
|
2018-06-19 15:45:09 +02:00
|
|
|
@@ -23,18 +23,18 @@
|
2017-06-14 23:35:14 +02:00
|
|
|
raise RuntimeError("Unable to find version string.")
|
2014-02-26 20:04:35 +01:00
|
|
|
|
|
|
|
|
2018-08-13 18:57:18 +02:00
|
|
|
-requires = ['botocore==1.10.75',
|
2018-06-19 15:45:09 +02:00
|
|
|
- 'colorama>=0.2.5,<=0.3.9',
|
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',
|
2018-06-19 15:45:09 +02:00
|
|
|
- 's3transfer>=0.1.12,<0.2.0',
|
2018-07-23 15:34:23 +02:00
|
|
|
- 'PyYAML>=3.10,<=3.13']
|
2018-08-13 18:57:18 +02:00
|
|
|
+# requires = ['botocore==1.10.75',
|
2018-06-19 15:45:09 +02:00
|
|
|
+# 'colorama>=0.2.5,<=0.3.9',
|
|
|
|
+# 'docutils>=0.10',
|
|
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
|
|
+# 's3transfer>=0.1.12,<0.2.0',
|
2018-07-23 15:34:23 +02:00
|
|
|
+# 'PyYAML>=3.10,<=3.13']
|
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):
|
2018-06-19 15:45:09 +02:00
|
|
|
- # For python2.6 we have to require argparse since it
|
|
|
|
- # was not in stdlib until 2.7.
|
2016-12-15 14:42:20 +01:00
|
|
|
- requires.append('argparse>=1.1')
|
2018-06-19 15:45:09 +02:00
|
|
|
+# 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')
|
2016-12-15 14:42:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
setup_options = dict(
|
2018-06-19 15:45:09 +02:00
|
|
|
@@ -51,12 +51,12 @@
|
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',
|
|
|
|
- ]
|
|
|
|
- },
|
2018-06-19 15:45:09 +02:00
|
|
|
+ # install_requires=requires,
|
|
|
|
+ # extras_require={
|
|
|
|
+ # ':python_version=="2.6"': [
|
|
|
|
+ # 'argparse>=1.1',
|
|
|
|
+ # ]
|
|
|
|
+ # },
|
2015-10-10 05:04:46 +02:00
|
|
|
license="Apache License 2.0",
|
|
|
|
classifiers=(
|
|
|
|
'Development Status :: 5 - Production/Stable',
|