pure python and c implement
[rainbowstream.git] / setup.py
index bf81013802c1d39bcd010bf25848dd642cc47e9b..046a182c7579d4eef81fc876ec4c982f0aa4c44b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,6 +3,8 @@ from setuptools import setup, find_packages
 version = '0.0.1'
 
 install_requires = [
+    "SQLAlchemy",
+    "pysqlite",
     "colorama",
     "pyfiglet",
     "python-dateutil",
@@ -12,8 +14,8 @@ install_requires = [
 
 setup(name='rainbowstream',
       version=version,
-      description="A rainbow streaming console for Twitter (twitter.com)",
-      long_description=open("./README.md", "r").read(),
+      description="A colorful terminal-based client for Twitter. Streaming also supported",
+      long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
           "Environment :: Console",
@@ -33,7 +35,7 @@ setup(name='rainbowstream',
       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/archive/v0.0.1.zip',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       include_package_data=True,