X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=c19cc83aedd0f1a325a419de9d6151036d063542;hp=d7f06fe4cbb81c955ec15ca58a6469d2aa6f3fc2;hb=c3bab4ef2c05950ac280571d9b3575beb5203b31;hpb=e7e289b4fdaacdd81fd611b41f0f349d47edba3e diff --git a/setup.py b/setup.py index d7f06fe..c19cc83 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,19 @@ from setuptools import setup, find_packages -version = '0.0.3' +version = '0.2.7' install_requires = [ - "SQLAlchemy", - "pysqlite", - "colorama", - "pyfiglet", "python-dateutil", - "termcolor", + "requests", + "pyfiglet", + "SQLAlchemy", "twitter", "Pillow", - "requests", ] setup(name='rainbowstream', version=version, - description="A colorful terminal-based Twitter client. Streaming API supportd.", + description="A smart and nice Twitter client on terminal.", long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", @@ -32,7 +29,7 @@ setup(name='rainbowstream', ], keywords='twitter, command-line tools, web 2.0, stream API', author='Vu Nhat Minh', - author_email='nhatminh_179@hotmail.com', + author_email='nhatminh179@gmail.com', url='https://github.com/DTVD/rainbowstream', license='MIT License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), @@ -42,6 +39,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbow=rainbowstream.rainbow:fly + rainbowstream=rainbowstream.rainbow:fly """, )