efb561978bbac98faae25afc8c6671e1f1fc1e85
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.3.2'
4
5 install_requires = [
6 "python-dateutil",
7 "requests",
8 "pyfiglet",
9 "SQLAlchemy",
10 "twitter",
11 "Pillow",
12 ]
13
14 setup(name='rainbowstream',
15 version=version,
16 description="A smart and nice Twitter client on terminal.",
17 long_description=open("./README.rst", "r").read(),
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.7",
25 "Programming Language :: Python :: 3.2",
26 "Programming Language :: Python :: 3.3",
27 "Programming Language :: Python :: 3.4",
28 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
29 "Topic :: Utilities",
30 "License :: OSI Approved :: MIT License",
31 ],
32 keywords='twitter, command-line tools, stream API',
33 author='Vu Nhat Minh',
34 author_email='nhatminh179@gmail.com',
35 url='http://www.rainbowstream.org/',
36 license='MIT License',
37 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
38 include_package_data=True,
39 zip_safe=True,
40 install_requires=install_requires,
41 entry_points="""
42 # -*- Entry points: -*-
43 [console_scripts]
44 rainbowstream=rainbowstream.rainbow:fly
45 """,
46 )