control prefix
[rainbowstream.git] / setup.py
index f30c5f6f12acfc3efc5de8003904d8384f3f228c..235839718889817c1e3256c8f2b858cc318ec92c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,12 +3,13 @@ from setuptools import setup, find_packages
 version = '0.0.1'
 
 install_requires = [
+    "SQLAlchemy",
     "colorama",
     "pyfiglet",
     "python-dateutil",
     "termcolor",
     "twitter"
-    ]
+]
 
 setup(name='rainbowstream',
       version=version,
@@ -28,12 +29,12 @@ setup(name='rainbowstream',
           "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
           "Topic :: Utilities",
           "License :: OSI Approved :: MIT License",
-          ],
+      ],
       keywords='twitter, command-line tools, web 2.0, stream API',
       author='Vu Nhat Minh',
       author_email='nhatminh_179@hotmail.com',
       url='https://github.com/DTVD/rainbowstream',
-      download_url = 'https://github.com/DTVD/rainbowstream/tarball/0.0.1',
+      download_url='https://github.com/DTVD/rainbowstream/tarball/0.0.1',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       include_package_data=True,
@@ -42,6 +43,6 @@ setup(name='rainbowstream',
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]
-      rainbowstream=rainbowstream.rainbow:stream
+      rainbow=rainbowstream.rainbow:fly
       """,
       )