Update README.md
[rainbowstream.git] / setup.py
index 2ec00ec8a3da8ab5acf12dd56229458f2cab9e0e..4048d7518af87c2ab734aaef3b90192aa56ebdb4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,16 +1,22 @@
 from setuptools import setup, find_packages
 
-version = '0.0.1'
+version = '0.2.5'
 
 install_requires = [
-    # -*- Extra requirements: -*-
-    ]
+    "SQLAlchemy",
+    "pysqlite",
+    "colorama",
+    "pyfiglet",
+    "python-dateutil",
+    "twitter",
+    "Pillow",
+    "requests",
+]
 
 setup(name='rainbowstream',
       version=version,
-      description="A rainbow streaming console for Twitter (twitter.com)",
-      long_description=open("./README.md", "r").read(),
-      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
+      description="A smart and nice Twitter client on terminal.",
+      long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
           "Environment :: Console",
@@ -19,17 +25,14 @@ setup(name='rainbowstream',
           "Operating System :: OS Independent",
           "Programming Language :: Python :: 2.6",
           "Programming Language :: Python :: 2.7",
-          "Programming Language :: Python :: 3.2",
-          "Programming Language :: Python :: 3.3",
-          "Programming Language :: Python :: 3.4",
           "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='http://vunhatminh.com',
+      url='https://github.com/DTVD/rainbowstream',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       include_package_data=True,
@@ -38,6 +41,6 @@ setup(name='rainbowstream',
       entry_points="""
       # -*- Entry points: -*-
       [console_scripts]
-      rainbowstream=rainbowstream.rainbow:main
+      rainbowstream=rainbowstream.rainbow:fly
       """,
       )