fix rst file
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3 2
b8c1f42a 3version = '0.0.7'
91476ec3
O
4
5install_requires = [
819569e8 6 "SQLAlchemy",
085fd318 7 "pysqlite",
341c1794
O
8 "colorama",
9 "pyfiglet",
10 "python-dateutil",
11 "termcolor",
991c30af
O
12 "twitter",
13 "Pillow",
14 "requests",
7b674cef 15]
91476ec3
O
16
17setup(name='rainbowstream',
18 version=version,
e7e289b4 19 description="A colorful terminal-based Twitter client. Streaming API supportd.",
3108149e 20 long_description=open("./README.rst", "r").read(),
91476ec3
O
21 classifiers=[
22 "Development Status :: 5 - Production/Stable",
23 "Environment :: Console",
24 "Intended Audience :: End Users/Desktop",
25 "Natural Language :: English",
26 "Operating System :: OS Independent",
27 "Programming Language :: Python :: 2.6",
28 "Programming Language :: Python :: 2.7",
91476ec3
O
29 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
30 "Topic :: Utilities",
31 "License :: OSI Approved :: MIT License",
7b674cef 32 ],
91476ec3
O
33 keywords='twitter, command-line tools, web 2.0, stream API',
34 author='Vu Nhat Minh',
35 author_email='nhatminh_179@hotmail.com',
13b5b854 36 url='https://github.com/DTVD/rainbowstream',
91476ec3
O
37 license='MIT License',
38 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
39 include_package_data=True,
40 zip_safe=True,
41 install_requires=install_requires,
42 entry_points="""
43 # -*- Entry points: -*-
44 [console_scripts]
092ddf4d 45 rainbow=rainbowstream.rainbow:fly
91476ec3
O
46 """,
47 )