[] and id=
[rainbowstream.git] / setup.py
index 95fa835eb8d2b5f9bc158a0d86f05787d83d9d06..8367f994b1f98928ceea5a1fa22ef269bda39ffe 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.10'
+version = '0.5.1'
 
 # Require
 install_requires = [
@@ -13,16 +13,13 @@ 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)