X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=setup.py;h=4048d7518af87c2ab734aaef3b90192aa56ebdb4;hb=791035e03b11b79a83381b7213bbe19ff46ca3cf;hp=f30c5f6f12acfc3efc5de8003904d8384f3f228c;hpb=13b5b8546c6d34c747faf9447f9d2eb26c81b7ff;p=rainbowstream.git diff --git a/setup.py b/setup.py index f30c5f6..4048d75 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,22 @@ from setuptools import setup, find_packages -version = '0.0.1' +version = '0.2.5' install_requires = [ + "SQLAlchemy", + "pysqlite", "colorama", "pyfiglet", "python-dateutil", - "termcolor", - "twitter" - ] + "twitter", + "Pillow", + "requests", +] 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", @@ -22,18 +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='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, @@ -42,6 +41,6 @@ setup(name='rainbowstream', entry_points=""" # -*- Entry points: -*- [console_scripts] - rainbowstream=rainbowstream.rainbow:stream + rainbowstream=rainbowstream.rainbow:fly """, )