Process to Thread, Goodbye SQLAlchemy
[rainbowstream.git] / setup.py
index 0c15d7af59d2411b877e291d82861d096ace51e1..9e5b65e536e0ad41e0f1bd838ef9e9cb1546609c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,20 +1,21 @@
 from setuptools import setup, find_packages
-import os, os.path, sys
+import os
+import os.path
+import sys
 
 # Bumped version
-version = '0.5.5'
+version = '0.6.0'
 
 # Require
 install_requires = [
     "python-dateutil",
     "requests",
     "pyfiglet",
-    "SQLAlchemy",
     "twitter",
     "Pillow",
 ]
 
-# Python 3 doesn't hava pysqlite
+# Python 3 doesn't have pysqlite
 if sys.version[0] == "2":
     install_requires += ["pysqlite"]