X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=fb6389ae85e0cff6080f9164c4fba8add08f3afa;hb=80b70d604fb3d444d08c31c91ec9a061a1347f7e;hp=2ec00ec8a3da8ab5acf12dd56229458f2cab9e0e;hpb=8c840a8396f7d42453bad34cb31ab1c3b5c7466f;p=rainbowstream.git diff --git a/setup.py b/setup.py index 2ec00ec..fb6389a 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,22 @@ from setuptools import setup, find_packages -version = '0.0.1' +version = '0.2.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", @@ -19,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, @@ -38,6 +41,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbowstream=rainbowstream.rainbow:main + rainbow=rainbowstream.rainbow:fly """, )