bumped version
[rainbowstream.git] / setup.py
... / ...
CommitLineData
1from setuptools import setup, find_packages
2
3version = '0.1.9'
4
5install_requires = [
6 "SQLAlchemy",
7 "pysqlite",
8 "colorama",
9 "pyfiglet",
10 "python-dateutil",
11 "twitter",
12 "Pillow",
13 "requests",
14]
15
16setup(name='rainbowstream',
17 version=version,
18 description="A smart and nice Twitter client on terminal.",
19 long_description=open("./README.rst", "r").read(),
20 classifiers=[
21 "Development Status :: 5 - Production/Stable",
22 "Environment :: Console",
23 "Intended Audience :: End Users/Desktop",
24 "Natural Language :: English",
25 "Operating System :: OS Independent",
26 "Programming Language :: Python :: 2.6",
27 "Programming Language :: Python :: 2.7",
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, web 2.0, stream API',
33 author='Vu Nhat Minh',
34 author_email='nhatminh_179@hotmail.com',
35 url='https://github.com/DTVD/rainbowstream',
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 rainbow=rainbowstream.rainbow:fly
45 """,
46 )