X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=e3532579bb86e416db9852ff9be941c7ee7f32ed;hp=f671f4913193709bc6e5a8d200a21ea9bcff792d;hb=4819f9859f66a5777f4d545666de206e9842e327;hpb=d95839b6c08e4ebf2a1704bb5d4bcd3dfe95e3ef diff --git a/setup.py b/setup.py index f671f49..e353257 100644 --- a/setup.py +++ b/setup.py @@ -1,26 +1,19 @@ 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.7.8' # Require install_requires = [ "python-dateutil", "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 +26,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",