delete Exception catch
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3 2
22592b9a 3version = '0.2.9'
91476ec3
O
4
5install_requires = [
7a466a72
O
6 "python-dateutil",
7 "requests",
8 "pyfiglet",
819569e8 9 "SQLAlchemy",
991c30af
O
10 "twitter",
11 "Pillow",
7b674cef 12]
91476ec3
O
13
14setup(name='rainbowstream',
15 version=version,
3f89ae3a 16 description="A smart and nice Twitter client on terminal.",
3108149e 17 long_description=open("./README.rst", "r").read(),
91476ec3
O
18 classifiers=[
19 "Development Status :: 5 - Production/Stable",
20 "Environment :: Console",
21 "Intended Audience :: End Users/Desktop",
22 "Natural Language :: English",
23 "Operating System :: OS Independent",
24 "Programming Language :: Python :: 2.6",
25 "Programming Language :: Python :: 2.7",
1b752a04 26 "Programming Language :: Python :: 3.2",
27 "Programming Language :: Python :: 3.3",
28 "Programming Language :: Python :: 3.4",
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',
7a466a72 35 author_email='nhatminh179@gmail.com',
1b752a04 36 url='http://www.rainbowstream.org/',
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]
2a488171 45 rainbowstream=rainbowstream.rainbow:fly
91476ec3
O
46 """,
47 )