X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=57d36851a63e54f322ef853c255c1cc5f526ff96;hp=1f1b1ef909177a51acff755908981c29316019bc;hb=8124f3a86a1a360bd80802507868796385fd2d15;hpb=ac1fa677898df6521af2b02384f971b7e43772a1 diff --git a/setup.py b/setup.py index 1f1b1ef..57d3685 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.0.2' +version = '0.1.2' install_requires = [ "SQLAlchemy", @@ -8,13 +8,14 @@ install_requires = [ "colorama", "pyfiglet", "python-dateutil", - "termcolor", - "twitter" + "twitter", + "Pillow", + "requests", ] setup(name='rainbowstream', version=version, - description="A colorful terminal-based client for Twitter. Streaming also supported", + description="A smart and nice Twitter client on terminal.", long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", @@ -24,9 +25,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", @@ -35,7 +33,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,