X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=b04ce8e6159a29433ca16fc5dd64af4a81f0c289;hp=8cf886f63a3292f09d3ab0dba70b84497beb0d06;hb=7595581b0e4bc9a75e0e605af6d4d48fa6abc596;hpb=fba038b1f789c78f14bafd8968b22e173d899d3f diff --git a/setup.py b/setup.py index 8cf886f..b04ce8e 100644 --- a/setup.py +++ b/setup.py @@ -1,25 +1,21 @@ from setuptools import setup, find_packages import os import os.path -import sys # Bumped version -version = '0.5.8' +version = '1.3.1' # Require install_requires = [ "python-dateutil", - "requests", + "arrow", + "requests==2.5.3", "pyfiglet", - "SQLAlchemy", "twitter", "Pillow", + "PySocks" ] -# Python 3 doesn't have 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):