X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=setup.py;h=d7f06fe4cbb81c955ec15ca58a6469d2aa6f3fc2;hb=1e9794859fb00052587ab17a4f472bd62aea7f65;hp=046a182c7579d4eef81fc876ec4c982f0aa4c44b;hpb=1396f07ec64e95c09fdaf3647deab38bdc384546;p=rainbowstream.git diff --git a/setup.py b/setup.py index 046a182..d7f06fe 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.0.1' +version = '0.0.3' install_requires = [ "SQLAlchemy", @@ -9,12 +9,14 @@ install_requires = [ "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 colorful terminal-based Twitter client. Streaming API supportd.", long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", @@ -24,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", @@ -35,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/archive/v0.0.1.zip', license='MIT License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True,