X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=fe816d19ecf41cfd7334a098001bf7fe08ba5a68;hp=9e5b65e536e0ad41e0f1bd838ef9e9cb1546609c;hb=0e6d22d6fb2c54f5eb37028da1414279e2d1a625;hpb=99b52f5fc1557f18f7d6593ccfa36f130139b4b7 diff --git a/setup.py b/setup.py index 9e5b65e..fe816d1 100644 --- a/setup.py +++ b/setup.py @@ -3,27 +3,37 @@ import os import os.path import sys +if sys.version[0] == "2": + from pipes import quote +else: + from shlex import quote + # Bumped version -version = '0.6.0' +version = '1.5.2' # Require install_requires = [ "python-dateutil", + "arrow", "requests", "pyfiglet", "twitter", "Pillow", + "PySocks", + "pocket" ] -# Python 3 doesn't have pysqlite -if sys.version[0] == "2": - install_requires += ["pysqlite"] +# Default user (considers non virtualenv method) +user = os.environ.get('SUDO_USER', os.environ.get('USER', None)) # Copy default config if not exists default = os.path.expanduser("~") + os.sep + '.rainbow_config.json' if not os.path.isfile(default): cmd = 'cp rainbowstream/colorset/config ' + default os.system(cmd) + if user: + cmd = 'chown ' + quote(user) + ' ' + default + os.system(cmd) cmd = 'chmod 777 ' + default os.system(cmd) @@ -42,6 +52,9 @@ setup(name='rainbowstream', "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities", "License :: OSI Approved :: MIT License", @@ -55,6 +68,7 @@ setup(name='rainbowstream', include_package_data=True, zip_safe=True, install_requires=install_requires, + long_description_content_type='text/markdown', entry_points=""" # -*- Entry points: -*- [console_scripts]