X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=28ebdf31f4c25ad5c48592d17982a1a1b687ccf2;hp=2ec00ec8a3da8ab5acf12dd56229458f2cab9e0e;hb=051055658481f0e8f1d7396c3d80169489ee6966;hpb=8c840a8396f7d42453bad34cb31ab1c3b5c7466f diff --git a/setup.py b/setup.py index 2ec00ec..28ebdf3 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", @@ -29,7 +32,8 @@ setup(name='rainbowstream', 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 + rainbowstream=rainbowstream.rainbow:fly """, )