slightly change
[rainbowstream.git] / setup.py
index da93a011b324c00accd73e7b890356e74fc5145a..4066ff16b0673010c794adbb2d7cf822600f2f72 100644 (file)
--- 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.3'
 
 # 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",