fix setup.py
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3 2
e16801a3 3version = '0.0.2'
91476ec3
O
4
5install_requires = [
819569e8 6 "SQLAlchemy",
085fd318 7 "pysqlite",
341c1794
O
8 "colorama",
9 "pyfiglet",
10 "python-dateutil",
11 "termcolor",
991c30af
O
12 "twitter",
13 "Pillow",
14 "requests",
7b674cef 15]
91476ec3
O
16
17setup(name='rainbowstream',
18 version=version,
3108149e 19 description="A colorful terminal-based client for Twitter. Streaming also supported",
20 long_description=open("./README.rst", "r").read(),
91476ec3
O
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",
7b674cef 35 ],
91476ec3
O
36 keywords='twitter, command-line tools, web 2.0, stream API',
37 author='Vu Nhat Minh',
38 author_email='nhatminh_179@hotmail.com',
13b5b854 39 url='https://github.com/DTVD/rainbowstream',
e16801a3 40 download_url='https://github.com/DTVD/rainbowstream/archive/v0.0.2.zip',
91476ec3
O
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]
092ddf4d 49 rainbow=rainbowstream.rainbow:fly
91476ec3
O
50 """,
51 )