setup.py
[rainbowstream.git] / setup.py
index ae4ded269c25d14c13a8fe1542d53c34f4ad4c05..0d959425deea7d891840eaf4db77e9a44110cb10 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 from setuptools import setup, find_packages
 
-version = '0.0.1'
+version = '0.1.0'
 
 install_requires = [
     "SQLAlchemy",
@@ -9,12 +9,15 @@ install_requires = [
     "pyfiglet",
     "python-dateutil",
     "termcolor",
-    "twitter"
+    "twitter",
+    "Pillow",
+    "requests",
 ]
 
 setup(name='rainbowstream',
       version=version,
-      description="A terminal-based rainbow streaming client for Twitter",
+      description="A smart and nice Twitter client on terminal.",
+      long_description=open("./README.rst", "r").read(),
       classifiers=[
           "Development Status :: 5 - Production/Stable",
           "Environment :: Console",
@@ -23,9 +26,6 @@ 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",
@@ -34,7 +34,6 @@ 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',
       license='MIT License',
       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       include_package_data=True,