X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=d55414a00e60521f03d0c41d8ac0541f0015037d;hp=57d36851a63e54f322ef853c255c1cc5f526ff96;hb=7a466a72577b5666867dae230fa5e4d654bffdfa;hpb=632c6fa515fe36cf88ef2bf39378464bd24701d8 diff --git a/setup.py b/setup.py index 57d3685..d55414a 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,15 @@ from setuptools import setup, find_packages -version = '0.1.2' +version = '0.2.6' install_requires = [ + "python-dateutil", + "requests", + "pyfiglet", "SQLAlchemy", "pysqlite", - "colorama", - "pyfiglet", - "python-dateutil", "twitter", "Pillow", - "requests", ] setup(name='rainbowstream', @@ -31,7 +30,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']), @@ -41,6 +40,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbow=rainbowstream.rainbow:fly + rainbowstream=rainbowstream.rainbow:fly """, )