bumped version
[rainbowstream.git] / setup.py
... / ...
CommitLineData
1from setuptools import setup, find_packages
2
3version = '0.2.9'
4
5install_requires = [
6 "python-dateutil",
7 "requests",
8 "pyfiglet",
9 "SQLAlchemy",
10 "twitter",
11 "Pillow",
12]
13
14setup(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.6",
25 "Programming Language :: Python :: 2.7",
26 "Programming Language :: Python :: 3.2",
27 "Programming Language :: Python :: 3.3",
28 "Programming Language :: Python :: 3.4",
29 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
30 "Topic :: Utilities",
31 "License :: OSI Approved :: MIT License",
32 ],
33 keywords='twitter, command-line tools, web 2.0, stream API',
34 author='Vu Nhat Minh',
35 author_email='nhatminh179@gmail.com',
36 url='http://www.rainbowstream.org/',
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]
45 rainbowstream=rainbowstream.rainbow:fly
46 """,
47 )