fix document
[rainbowstream.git] / setup.py
index dc7fa6fe033395c85216b2f889da8aa0b0c5341f..8a1cf099195a177b94c4aff74279b5c3245e3b6c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,28 +1,27 @@
 from setuptools import setup, find_packages
-import os, os.path, sys
+import os
+import os.path
 
 # Bumped version
-version = '0.4.10'
+version = '0.8.7'
 
 # Require
 install_requires = [
     "python-dateutil",
+    "arrow",
     "requests",
     "pyfiglet",
-    "SQLAlchemy",
     "twitter",
     "Pillow",
 ]
 
-# 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',