X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=c5ab2d298f90fb0aa44d65045adadbb08cded005;hp=235839718889817c1e3256c8f2b858cc318ec92c;hb=ff858bfb99c554b1acc422ef1706c0ae7d2152e5;hpb=819569e8e860ad79245fea5255363f747d7d6070 diff --git a/setup.py b/setup.py index 2358397..c5ab2d2 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,20 @@ from setuptools import setup, find_packages -version = '0.0.1' +version = '0.2.8' install_requires = [ - "SQLAlchemy", - "colorama", - "pyfiglet", "python-dateutil", - "termcolor", - "twitter" + "requests", + "pyfiglet", + "SQLAlchemy", + "twitter", + "Pillow", ] setup(name='rainbowstream', version=version, - description="A rainbow streaming console for Twitter (twitter.com)", - long_description=open("./README.md", "r").read(), + description="A smart and nice Twitter client on terminal.", + long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -23,18 +23,14 @@ 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", ], 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', - 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, @@ -43,6 +39,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbow=rainbowstream.rainbow:fly + rainbowstream=rainbowstream.rainbow:fly """, )