X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=6337cfeb2c4a29e911fa231cd75a7e6e9a220206;hp=ae0049449fed54f1bd1c24f07b9d740f566ca7c6;hb=954b31016c5bf5c633e9a8793a2659e1a74024b3;hpb=c37c04a9b4a6dd36de8093eb49a473b1021217c7;ds=sidebyside diff --git a/setup.py b/setup.py index ae00494..6337cfe 100644 --- a/setup.py +++ b/setup.py @@ -1,23 +1,20 @@ from setuptools import setup, find_packages -import os, os.path, sys +import os +import os.path # Bumped version -version = '0.5.4' +version = '0.9.1' # Require install_requires = [ "python-dateutil", + "arrow", "requests", "pyfiglet", - "SQLAlchemy", "twitter", "Pillow", ] -# Python 3 doesn't hava 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):