Merge branch 'master' of github.com:DTVD/rainbowstream
[rainbowstream.git] / setup.py
index f90a549f522c7d93541749013573887e4374cb9d..0c15d7af59d2411b877e291d82861d096ace51e1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,8 @@
 from setuptools import setup, find_packages
-import os, sys
+import os, os.path, sys
 
 # Bumped version
-version = '0.3.8'
+version = '0.5.5'
 
 # Require
 install_requires = [
@@ -13,19 +13,18 @@ install_requires = [
     "twitter",
     "Pillow",
 ]
+
 # Python 3 doesn't hava pysqlite
 if sys.version[0] == "2":
     install_requires += ["pysqlite"]
 
 # Copy default config if not exists
-default = os.environ.get(
-    'HOME',
-    os.environ.get(
-        'USERPROFILE',
-        '')) + os.sep + '.rainbow_config.json'
+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',