X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=bf81013802c1d39bcd010bf25848dd642cc47e9b;hp=2ec00ec8a3da8ab5acf12dd56229458f2cab9e0e;hb=7a00142fbd8716d040603cba7c27000e2673be25;hpb=8c840a8396f7d42453bad34cb31ab1c3b5c7466f diff --git a/setup.py b/setup.py index 2ec00ec..bf81013 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,17 @@ from setuptools import setup, find_packages version = '0.0.1' install_requires = [ - # -*- Extra requirements: -*- - ] + "colorama", + "pyfiglet", + "python-dateutil", + "termcolor", + "twitter" +] setup(name='rainbowstream', version=version, description="A rainbow streaming console for Twitter (twitter.com)", long_description=open("./README.md", "r").read(), - # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -25,11 +28,12 @@ setup(name='rainbowstream', "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', - url='http://vunhatminh.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, @@ -38,6 +42,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbowstream=rainbowstream.rainbow:main + rainbow=rainbowstream.rainbow:fly """, )