image viewer + input history + follow + unfollow
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.0.2'
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 colorful terminal-based client for Twitter. Streaming also supported",
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 "Programming Language :: Python :: 3.2",
30 "Programming Language :: Python :: 3.3",
31 "Programming Language :: Python :: 3.4",
32 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
33 "Topic :: Utilities",
34 "License :: OSI Approved :: MIT License",
35 ],
36 keywords='twitter, command-line tools, web 2.0, stream API',
37 author='Vu Nhat Minh',
38 author_email='nhatminh_179@hotmail.com',
39 url='https://github.com/DTVD/rainbowstream',
40 download_url='https://github.com/DTVD/rainbowstream/archive/v0.0.2.zip',
41 license='MIT License',
42 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
43 include_package_data=True,
44 zip_safe=True,
45 install_requires=install_requires,
46 entry_points="""
47 # -*- Entry points: -*-
48 [console_scripts]
49 rainbow=rainbowstream.rainbow:fly
50 """,
51 )