X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=c5ab2d298f90fb0aa44d65045adadbb08cded005;hp=2ebe87ba2d8f4d33d592d6527368c48a06a6878d;hb=ff858bfb99c554b1acc422ef1706c0ae7d2152e5;hpb=d72a58693b3f2625347227d2670e32bd0ed687e0 diff --git a/setup.py b/setup.py index 2ebe87b..c5ab2d2 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,19 @@ from setuptools import setup, find_packages -version = '0.0.6' +version = '0.2.8' 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 """, )