binary_search with no luck
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.0.1'
4
5 install_requires = [
6 "SQLAlchemy",
7 "pysqlite",
8 "colorama",
9 "pyfiglet",
10 "python-dateutil",
11 "termcolor",
12 "twitter"
13 ]
14
15 setup(name='rainbowstream',
16 version=version,
17 description="A colorful terminal-based client for Twitter. Streaming also supported",
18 long_description=open("./README.rst", "r").read(),
19 classifiers=[
20 "Development Status :: 5 - Production/Stable",
21 "Environment :: Console",
22 "Intended Audience :: End Users/Desktop",
23 "Natural Language :: English",
24 "Operating System :: OS Independent",
25 "Programming Language :: Python :: 2.6",
26 "Programming Language :: Python :: 2.7",
27 "Programming Language :: Python :: 3.2",
28 "Programming Language :: Python :: 3.3",
29 "Programming Language :: Python :: 3.4",
30 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
31 "Topic :: Utilities",
32 "License :: OSI Approved :: MIT License",
33 ],
34 keywords='twitter, command-line tools, web 2.0, stream API',
35 author='Vu Nhat Minh',
36 author_email='nhatminh_179@hotmail.com',
37 url='https://github.com/DTVD/rainbowstream',
38 download_url='https://github.com/DTVD/rainbowstream/archive/v0.0.1.zip',
39 license='MIT License',
40 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
41 include_package_data=True,
42 zip_safe=True,
43 install_requires=install_requires,
44 entry_points="""
45 # -*- Entry points: -*-
46 [console_scripts]
47 rainbow=rainbowstream.rainbow:fly
48 """,
49 )