fix image IOError
[rainbowstream.git] / setup.py
index 8a6b534f32f66d25221348b77109cb8750ae65da..af31317ca3735016e4ff4fe94ddaafaba3d67ee4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,16 +1,15 @@
 from setuptools import setup, find_packages
 
-version = '0.1.7'
+version = '0.2.7'
 
 install_requires = [
+    "python-dateutil",
+    "requests",
+    "pyfiglet",
     "SQLAlchemy",
     "pysqlite",
-    "colorama",
-    "pyfiglet",
-    "python-dateutil",
     "twitter",
     "Pillow",
-    "requests",
 ]
 
 setup(name='rainbowstream',
@@ -31,7 +30,7 @@ setup(name='rainbowstream',
       ],
       keywords='twitter, command-line tools, web 2.0, stream API',
       author='Vu Nhat Minh',
-      author_email='nhatminh_179@hotmail.com',
+      author_email='nhatminh179@gmail.com',
       url='https://github.com/DTVD/rainbowstream',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
@@ -41,6 +40,6 @@ setup(name='rainbowstream',
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]
-      rainbow=rainbowstream.rainbow:fly
+      rainbowstream=rainbowstream.rainbow:fly
       """,
       )