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