Set -hr as default and drop the config
[rainbowstream.git] / setup.py
index ae0049449fed54f1bd1c24f07b9d740f566ca7c6..93c44438adee4a001c02aba41d50ef25061a992d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,23 +1,21 @@
 from setuptools import setup, find_packages
-import os, os.path, sys
+import os
+import os.path
 
 # Bumped version
-version = '0.5.4'
+version = '1.2.7'
 
 # Require
 install_requires = [
     "python-dateutil",
-    "requests",
+    "arrow",
+    "requests==2.5.3",
     "pyfiglet",
-    "SQLAlchemy",
     "twitter",
     "Pillow",
+    "PySocks"
 ]
 
-# Python 3 doesn't hava 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):