2019-12-05 15:17:02 +01:00
|
|
|
--- setup.py.orig 2019-12-05 02:29:27.000000000 +0100
|
|
|
|
+++ setup.py 2019-12-05 15:00:13.566501035 +0100
|
2019-10-14 20:16:20 +02:00
|
|
|
@@ -23,30 +23,30 @@
|
2017-06-14 23:35:14 +02:00
|
|
|
raise RuntimeError("Unable to find version string.")
|
2014-02-26 20:04:35 +01:00
|
|
|
|
|
|
|
|
2019-12-05 15:17:02 +01:00
|
|
|
-install_requires = ['botocore==1.13.33',
|
2019-10-14 20:16:20 +02:00
|
|
|
- 'docutils>=0.10,<0.16',
|
|
|
|
- 'rsa>=3.1.2,<=3.5.0',
|
|
|
|
- 's3transfer>=0.2.0,<0.3.0']
|
2019-06-23 16:46:56 +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.
|
2019-10-14 20:16:20 +02:00
|
|
|
- install_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.
|
2019-10-14 20:16:20 +02:00
|
|
|
- install_requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
-
|
|
|
|
- # Colorama removed support for EOL pythons.
|
|
|
|
- install_requires.append('colorama>=0.2.5,<=0.3.9')
|
|
|
|
-elif sys.version_info[:2] == (3, 3):
|
|
|
|
- install_requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
- # Colorama removed support for EOL pythons.
|
|
|
|
- install_requires.append('colorama>=0.2.5,<=0.3.9')
|
2019-06-23 16:46:56 +02:00
|
|
|
-else:
|
2019-10-14 20:16:20 +02:00
|
|
|
- install_requires.append('PyYAML>=3.10,<5.2')
|
|
|
|
- install_requires.append('colorama>=0.2.5,<0.4.2')
|
2019-12-05 15:17:02 +01:00
|
|
|
+# install_requires = ['botocore==1.13.33',
|
2019-10-14 20:16:20 +02:00
|
|
|
+# 'docutils>=0.10,<0.16',
|
|
|
|
+# 'rsa>=3.1.2,<=3.5.0',
|
|
|
|
+# 's3transfer>=0.2.0,<0.3.0']
|
2019-06-23 16:46:56 +02:00
|
|
|
+
|
|
|
|
+
|
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.
|
2019-10-14 20:16:20 +02:00
|
|
|
+# install_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.
|
2019-10-14 20:16:20 +02:00
|
|
|
+# install_requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
+
|
|
|
|
+# # Colorama removed support for EOL pythons.
|
|
|
|
+# install_requires.append('colorama>=0.2.5,<=0.3.9')
|
|
|
|
+# elif sys.version_info[:2] == (3, 3):
|
|
|
|
+# install_requires.append('PyYAML>=3.10,<=3.13')
|
|
|
|
+# # Colorama removed support for EOL pythons.
|
|
|
|
+# install_requires.append('colorama>=0.2.5,<=0.3.9')
|
2019-06-23 16:46:56 +02:00
|
|
|
+# else:
|
2019-10-14 20:16:20 +02:00
|
|
|
+# install_requires.append('PyYAML>=3.10,<5.2')
|
|
|
|
+# install_requires.append('colorama>=0.2.5,<0.4.2')
|
2016-12-15 14:42:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
setup_options = dict(
|
2019-10-14 20:16:20 +02:00
|
|
|
@@ -64,12 +64,12 @@
|
2019-08-22 15:51:27 +02:00
|
|
|
'examples/*/*.txt', 'examples/*/*/*.txt',
|
2015-05-28 00:33:00 +02:00
|
|
|
'examples/*/*/*.rst', 'topics/*.rst',
|
|
|
|
'topics/*.json']},
|
2019-10-14 20:16:20 +02:00
|
|
|
- install_requires=install_requires,
|
2015-10-10 05:04:46 +02:00
|
|
|
- extras_require={
|
|
|
|
- ':python_version=="2.6"': [
|
|
|
|
- 'argparse>=1.1',
|
|
|
|
- ]
|
|
|
|
- },
|
2019-10-14 20:16:20 +02:00
|
|
|
+ # install_requires=install_requires,
|
2018-06-19 15:45:09 +02:00
|
|
|
+ # 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',
|