2019-08-22 15:51:27 +02:00
|
|
|
--- setup.py.orig 2019-08-21 20:20:11.000000000 +0200
|
|
|
|
+++ setup.py 2019-08-22 15:09:23.121269602 +0200
|
2019-06-23 16:46:56 +02:00
|
|
|
@@ -23,23 +23,23 @@
|
2017-06-14 23:35:14 +02:00
|
|
|
raise RuntimeError("Unable to find version string.")
|
2014-02-26 20:04:35 +01:00
|
|
|
|
|
|
|
|
2019-08-22 15:51:27 +02:00
|
|
|
-requires = ['botocore==1.12.213',
|
2018-06-19 15:45:09 +02:00
|
|
|
- 'colorama>=0.2.5,<=0.3.9',
|
2019-08-22 15:51:27 +02:00
|
|
|
- 'docutils>=0.10,<0.16',
|
2016-06-21 14:34:42 +02:00
|
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
2019-06-23 16:46:56 +02:00
|
|
|
- 's3transfer>=0.2.0,<0.3.0']
|
|
|
|
-
|
|
|
|
-
|
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')
|
2019-06-23 16:46:56 +02: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:
|
2019-08-22 15:51:27 +02:00
|
|
|
- requires.append('PyYAML>=3.10,<=5.2')
|
|
|
|
+# requires = ['botocore==1.12.213',
|
2019-06-23 16:46:56 +02:00
|
|
|
+# 'colorama>=0.2.5,<=0.3.9',
|
2019-08-22 15:51:27 +02:00
|
|
|
+# 'docutils>=0.10,<0.16',
|
2019-06-23 16:46:56 +02:00
|
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
|
|
+# 's3transfer>=0.2.0,<0.3.0']
|
|
|
|
+
|
|
|
|
+
|
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')
|
2019-06-23 16:46:56 +02: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:
|
2019-08-22 15:51:27 +02:00
|
|
|
+# requires.append('PyYAML>=3.10,<=5.2')
|
2016-12-15 14:42:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
setup_options = dict(
|
2019-08-22 15:51:27 +02:00
|
|
|
@@ -57,12 +57,12 @@
|
|
|
|
'examples/*/*.txt', 'examples/*/*/*.txt',
|
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",
|
2019-01-31 13:16:05 +01:00
|
|
|
classifiers=[
|
2015-10-10 05:04:46 +02:00
|
|
|
'Development Status :: 5 - Production/Stable',
|