X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=32fcadf189ff04b69765e174bc49ef89bff041ff;hp=da93a011b324c00accd73e7b890356e74fc5145a;hb=99cd1fba83efcd1dd6f01570ea79776b4e41f1cf;hpb=9d5a2a1c86bffc0895754badbd48746f481cdad2 diff --git a/setup.py b/setup.py index da93a01..32fcadf 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.9.4' # 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",