X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=447c9da3ef85d21615d849393c47144d7affd2ab;hp=f671f4913193709bc6e5a8d200a21ea9bcff792d;hb=37cf396abd4e6bd3e0337d0e0125308d3df89a19;hpb=d95839b6c08e4ebf2a1704bb5d4bcd3dfe95e3ef diff --git a/setup.py b/setup.py index f671f49..447c9da 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.7' +version = '0.8.9' # 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",