2019-06-28 13:12:19 +00:00
|
|
|
--- setup.py.orig 2019-06-27 20:24:53.000000000 +0200
|
|
|
|
+++ setup.py 2019-06-28 14:32:23.056466861 +0200
|
2019-06-23 14:46:56 +00:00
|
|
|
@@ -23,23 +23,23 @@
|
2017-06-14 21:35:14 +00:00
|
|
|
raise RuntimeError("Unable to find version string.")
|
2014-02-26 19:04:35 +00:00
|
|
|
|
|
|
|
|
2019-06-28 13:12:19 +00:00
|
|
|
-requires = ['botocore==1.12.179',
|
2018-06-19 13:45:09 +00:00
|
|
|
- 'colorama>=0.2.5,<=0.3.9',
|
2014-02-26 19:04:35 +00:00
|
|
|
- 'docutils>=0.10',
|
2016-06-21 12:34:42 +00:00
|
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
2019-06-23 14:46:56 +00:00
|
|
|
- 's3transfer>=0.2.0,<0.3.0']
|
|
|
|
-
|
|
|
|
-
|
2016-12-15 13:42:20 +00:00
|
|
|
-if sys.version_info[:2] == (2, 6):
|
2018-06-19 13:45:09 +00:00
|
|
|
- # For python2.6 we have to require argparse since it
|
|
|
|
- # was not in stdlib until 2.7.
|
2016-12-15 13:42:20 +00:00
|
|
|
- requires.append('argparse>=1.1')
|
2019-06-23 14:46:56 +00:00
|
|
|
-
|
|
|
|
- # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
|
|
|
- # versions dropped support for Python 2.6.
|
|
|
|
- requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
-else:
|
|
|
|
- requires.append('PyYAML>=3.10,<=5.1')
|
2019-06-28 13:12:19 +00:00
|
|
|
+# requires = ['botocore==1.12.179',
|
2019-06-23 14:46:56 +00:00
|
|
|
+# 'colorama>=0.2.5,<=0.3.9',
|
|
|
|
+# 'docutils>=0.10',
|
|
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
|
|
+# 's3transfer>=0.2.0,<0.3.0']
|
|
|
|
+
|
|
|
|
+
|
2018-06-19 13:45:09 +00: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')
|
2019-06-23 14:46:56 +00:00
|
|
|
+
|
|
|
|
+# # For Python 2.6, we have to require a different verion of PyYAML since the latest
|
|
|
|
+# # versions dropped support for Python 2.6.
|
|
|
|
+# requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
+# else:
|
|
|
|
+# requires.append('PyYAML>=3.10,<=5.1')
|
2016-12-15 13:42:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
setup_options = dict(
|
2019-06-23 14:46:56 +00:00
|
|
|
@@ -56,12 +56,12 @@
|
2014-02-26 19:04:35 +00:00
|
|
|
package_data={'awscli': ['data/*.json', 'examples/*/*.rst',
|
2015-05-27 22:33:00 +00:00
|
|
|
'examples/*/*/*.rst', 'topics/*.rst',
|
|
|
|
'topics/*.json']},
|
2014-02-26 19:04:35 +00:00
|
|
|
- install_requires=requires,
|
2015-10-10 03:04:46 +00:00
|
|
|
- extras_require={
|
|
|
|
- ':python_version=="2.6"': [
|
|
|
|
- 'argparse>=1.1',
|
|
|
|
- ]
|
|
|
|
- },
|
2018-06-19 13:45:09 +00:00
|
|
|
+ # install_requires=requires,
|
|
|
|
+ # extras_require={
|
|
|
|
+ # ':python_version=="2.6"': [
|
|
|
|
+ # 'argparse>=1.1',
|
|
|
|
+ # ]
|
|
|
|
+ # },
|
2015-10-10 03:04:46 +00:00
|
|
|
license="Apache License 2.0",
|
2019-01-31 12:16:05 +00:00
|
|
|
classifiers=[
|
2015-10-10 03:04:46 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|