X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=b36df7bf3407ca3f6b77677b3b4a666e91ade1c5;hp=994505cf9f5db6f0c055565c4530163b9e9bdb6a;hb=6df2f51ba4fe6293b6741bb1043980e233d0889d;hpb=8c7ae5942907b76953b6dca9888ec64547e248aa diff --git a/setup.py b/setup.py index 994505c..b36df7b 100644 --- a/setup.py +++ b/setup.py @@ -1,28 +1,28 @@ from setuptools import setup, find_packages -import os, os.path, sys +import os +import os.path # Bumped version -version = '0.5.0' +version = '1.3.3' # Require install_requires = [ "python-dateutil", - "requests", + "arrow", + "requests==2.5.3", "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.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', @@ -39,6 +39,7 @@ setup(name='rainbowstream', "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities", "License :: OSI Approved :: MIT License",