bumped version
[rainbowstream.git] / setup.py
index f4c47c606009aad0bf9c96e284289115d0ca6592..c5ab2d298f90fb0aa44d65045adadbb08cded005 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,22 +1,19 @@
 from setuptools import setup, find_packages
 
 from setuptools import setup, find_packages
 
-version = '0.0.7'
+version = '0.2.8'
 
 install_requires = [
 
 install_requires = [
-    "SQLAlchemy",
-    "pysqlite",
-    "colorama",
-    "pyfiglet",
     "python-dateutil",
     "python-dateutil",
-    "termcolor",
+    "requests",
+    "pyfiglet",
+    "SQLAlchemy",
     "twitter",
     "Pillow",
     "twitter",
     "Pillow",
-    "requests",
 ]
 
 setup(name='rainbowstream',
       version=version,
 ]
 
 setup(name='rainbowstream',
       version=version,
-      description="A colorful terminal-based Twitter client. Streaming API supportd.",
+      description="A smart and nice Twitter client on terminal.",
       long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
       long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
@@ -32,7 +29,7 @@ setup(name='rainbowstream',
       ],
       keywords='twitter, command-line tools, web 2.0, stream API',
       author='Vu Nhat Minh',
       ],
       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']),
       url='https://github.com/DTVD/rainbowstream',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
@@ -42,6 +39,6 @@ setup(name='rainbowstream',
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]
-      rainbow=rainbowstream.rainbow:fly
+      rainbowstream=rainbowstream.rainbow:fly
       """,
       )
       """,
       )