X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=b930f625421ae934248beab241584fe9fbd04f25;hp=aa4ead6a92c777438fb0f143d15529e1cb5fb218;hb=66fe9f758d24e00cc7f4264a420e2a1507aac0af;hpb=ceec85939c25fe0a6b9d586b3066be4878f2379c diff --git a/setup.py b/setup.py index aa4ead6..b930f62 100644 --- a/setup.py +++ b/setup.py @@ -1,32 +1,27 @@ from setuptools import setup, find_packages -import os, sys +import os +import os.path # Bumped version -version = '0.4.6' +version = '1.1.1' # 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.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',