X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=setup.py;h=8a1cf099195a177b94c4aff74279b5c3245e3b6c;hb=03c0d30be5c9eff80893cce9320a01ef3ce918a5;hp=da93a011b324c00accd73e7b890356e74fc5145a;hpb=9d5a2a1c86bffc0895754badbd48746f481cdad2;p=rainbowstream.git diff --git a/setup.py b/setup.py index da93a01..8a1cf09 100644 --- a/setup.py +++ b/setup.py @@ -1,26 +1,20 @@ from setuptools import setup, find_packages -from io import open import os import os.path -import sys # Bumped version -version = '0.5.8' +version = '0.8.7' # Require install_requires = [ "python-dateutil", + "arrow", "requests", "pyfiglet", - "SQLAlchemy", "twitter", "Pillow", ] -# 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): @@ -33,7 +27,7 @@ if not os.path.isfile(default): setup(name='rainbowstream', version=version, description="A smart and nice Twitter client on terminal.", - long_description=open("./README.rst", "r", encoding='utf-8').read(), + long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console",