X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=eb7c58f014200d46c24198c411dbb12100295201;hp=ab8a7111c3f60d4efd54ed7d887d0a5340f793da;hb=8141aca6b2aaa7ce8f097f689fc2241f4f7ad3af;hpb=9683e61df26e11721be0a644b6b9ebec81f92d8d;ds=sidebyside diff --git a/setup.py b/setup.py index ab8a711..eb7c58f 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup, find_packages -import os, sys +import os +import os.path +import sys # Bumped version -version = '0.4.0' +version = '0.5.7' # Require install_requires = [ @@ -13,19 +15,18 @@ install_requires = [ "twitter", "Pillow", ] -# Python 3 doesn't hava pysqlite + +# Python 3 doesn't have 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',