X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=fe816d19ecf41cfd7334a098001bf7fe08ba5a68;hp=5f31061857b2f1e1fec6edf963570eb48b66a4d6;hb=0e6d22d6fb2c54f5eb37028da1414279e2d1a625;hpb=a5901ee16a4c024b51a1bc918dd7b11d5c21a897 diff --git a/setup.py b/setup.py index 5f31061..fe816d1 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,43 @@ from setuptools import setup, find_packages +import os +import os.path import sys -version = '0.3.2' +if sys.version[0] == "2": + from pipes import quote +else: + from shlex import quote + +# Bumped version +version = '1.5.2' +# Require install_requires = [ "python-dateutil", + "arrow", "requests", "pyfiglet", - "SQLAlchemy", "twitter", "Pillow", + "PySocks", + "pocket" ] -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) + +# Setup setup(name='rainbowstream', version=version, description="A smart and nice Twitter client on terminal.", @@ -28,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", @@ -41,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]