From: Harmon Date: Sat, 4 May 2019 07:00:58 +0000 (-0500) Subject: Improve setup install_requires order X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8ac78b7777f1cda12f0c1012071faae2e58103b0;p=tweepy.git Improve setup install_requires order --- diff --git a/setup.py b/setup.py index 9da3af5..9e0d395 100644 --- a/setup.py +++ b/setup.py @@ -23,10 +23,10 @@ setup(name="tweepy", url="http://github.com/tweepy/tweepy", packages=find_packages(exclude=['tests', 'examples']), install_requires=[ + "PySocks>=1.5.7", "requests>=2.11.1", "requests_oauthlib>=0.7.0", "six>=1.10.0", - "PySocks>=1.5.7", ], keywords="twitter library", python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',