version
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3 2
c333c6dc 3version = '0.3.2'
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",
91476ec3 24 "Programming Language :: Python :: 2.7",
1b752a04 25 "Programming Language :: Python :: 3.2",
26 "Programming Language :: Python :: 3.3",
27 "Programming Language :: Python :: 3.4",
91476ec3
O
28 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
29 "Topic :: Utilities",
30 "License :: OSI Approved :: MIT License",
7b674cef 31 ],
c333c6dc 32 keywords='twitter, command-line tools, stream API',
91476ec3 33 author='Vu Nhat Minh',
7a466a72 34 author_email='nhatminh179@gmail.com',
1b752a04 35 url='http://www.rainbowstream.org/',
91476ec3
O
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]
2a488171 44 rainbowstream=rainbowstream.rainbow:fly
91476ec3
O
45 """,
46 )