Merge pull request #73 from polarkac/custom_prefix
[rainbowstream.git] / setup.py
index 8cf886f63a3292f09d3ab0dba70b84497beb0d06..ed0362c7151abe5c2192578cd21359fb83da58bb 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,25 +1,21 @@
 from setuptools import setup, find_packages
 import os
 import os.path
-import sys
 
 # Bumped version
-version = '0.5.8'
+version = '1.2.0'
 
 # Require
 install_requires = [
     "python-dateutil",
+    "arrow",
     "requests",
     "pyfiglet",
-    "SQLAlchemy",
     "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):