From 065938c09787488a4d681fde64da47973bbe0551 Mon Sep 17 00:00:00 2001 From: Alexander Chekunkov Date: Thu, 2 Mar 2017 13:46:56 +0000 Subject: [PATCH] Update setup.py Pin scrapinghub (>=1.9.0) and six (>=1.7.0) versions. Add Python 3.6 trove classifier. --- setup.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 96d91b03..5e0e833f 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,16 @@ }, include_package_data=True, zip_safe=False, - install_requires=['click', 'pip', 'requests', 'PyYAML', 'scrapinghub', - 'six', 'docker-py', 'retrying'], + install_requires=[ + 'click', + 'docker-py', + 'pip', + 'PyYAML', + 'retrying', + 'requests', + 'scrapinghub>=1.9.0', + 'six>=1.7.0', + ], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', @@ -31,6 +39,7 @@ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Operating System :: OS Independent', 'Environment :: Console', 'Topic :: Internet :: WWW/HTTP',