X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=setup.py;h=57d36851a63e54f322ef853c255c1cc5f526ff96;hp=0aa173ed38032e06801b17bb8bb22a4d52683d6d;hb=bb03272e3286e31f09e30a72159d3b683fefb7fb;hpb=91476ec37e468301d39182aff48936749158e976 diff --git a/setup.py b/setup.py index 0aa173e..57d3685 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,22 @@ from setuptools import setup, find_packages -import sys, os -version = '0.0.1' +version = '0.1.2' install_requires = [ - # -*- Extra requirements: -*- - ] + "SQLAlchemy", + "pysqlite", + "colorama", + "pyfiglet", + "python-dateutil", + "twitter", + "Pillow", + "requests", +] 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 + description="A smart and nice Twitter client on terminal.", + long_description=open("./README.rst", "r").read(), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -20,17 +25,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', - url='http://vunhatminh.com', + url='https://github.com/DTVD/rainbowstream', license='MIT License', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, @@ -39,6 +41,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbowstream=rainbowstream.rainbow:main + rainbow=rainbowstream.rainbow:fly """, )