Merge pull request #176 from elopio/patch-1
[rainbowstream.git] / setup.py
index 9e5b65e536e0ad41e0f1bd838ef9e9cb1546609c..b36df7bf3407ca3f6b77677b3b4a666e91ade1c5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,24 +1,21 @@
 from setuptools import setup, find_packages
 import os
 import os.path
-import sys
 
 # Bumped version
-version = '0.6.0'
+version = '1.3.3'
 
 # Require
 install_requires = [
     "python-dateutil",
-    "requests",
+    "arrow",
+    "requests==2.5.3",
     "pyfiglet",
     "twitter",
     "Pillow",
+    "PySocks"
 ]
 
-# Python 3 doesn't have pysqlite
-if sys.version[0] == "2":
-    install_requires += ["pysqlite"]
-
 # Copy default config if not exists
 default = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
 if not os.path.isfile(default):
@@ -42,6 +39,7 @@ setup(name='rainbowstream',
           "Programming Language :: Python :: 3.2",
           "Programming Language :: Python :: 3.3",
           "Programming Language :: Python :: 3.4",
+          "Programming Language :: Python :: 3.5",
           "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
           "Topic :: Utilities",
           "License :: OSI Approved :: MIT License",