X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=setup.py;h=121ce5277d346113f29066d3ce62adb93d40fb16;hb=5531923ea428470228d145d3c89fee0aecbe6e78;hp=06883651c6280d6386453863a1f76697ddfc46f1;hpb=531f568231af56035b61bb196b0e43fa79ff223e;p=rainbowstream.git diff --git a/setup.py b/setup.py index 0688365..121ce52 100644 --- a/setup.py +++ b/setup.py @@ -1,32 +1,28 @@ from setuptools import setup, find_packages -import os, sys +import os +import os.path # Bumped version -version = '0.4.2' +version = '1.1.6' # 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.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',