Added --stream argument to change the stream on program start.
[rainbowstream.git] / setup.py
index 994505cf9f5db6f0c055565c4530163b9e9bdb6a..fc7a1afc58ea426ca0b23b6d7fc1df75e4931531 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,28 +1,28 @@
 from setuptools import setup, find_packages
-import os, os.path, sys
+import os
+import os.path
 
 # Bumped version
-version = '0.5.0'
+version = '1.2.3'
 
 # Require
 install_requires = [
     "python-dateutil",
+    "arrow",
     "requests",
     "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):
     cmd = 'cp rainbowstream/colorset/config ' + default
     os.system(cmd)
+    cmd = 'chmod 777 ' + default
+    os.system(cmd)
 
 # Setup
 setup(name='rainbowstream',