ss
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.0.1'
4
5 install_requires = [
6 "SQLAlchemy",
7 "colorama",
8 "pyfiglet",
9 "python-dateutil",
10 "termcolor",
11 "twitter"
12 ]
13
14 setup(name='rainbowstream',
15 version=version,
16 description="A rainbow streaming console for Twitter (twitter.com)",
17 long_description=open("./README.md", "r").read(),
18 classifiers=[
19 "Development Status :: 5 - Production/Stable",
20 "Environment :: Console",
21 "Intended Audience :: End Users/Desktop",
22 "Natural Language :: English",
23 "Operating System :: OS Independent",
24 "Programming Language :: Python :: 2.6",
25 "Programming Language :: Python :: 2.7",
26 "Programming Language :: Python :: 3.2",
27 "Programming Language :: Python :: 3.3",
28 "Programming Language :: Python :: 3.4",
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 download_url='https://github.com/DTVD/rainbowstream/tarball/0.0.1',
38 license='MIT License',
39 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
40 include_package_data=True,
41 zip_safe=True,
42 install_requires=install_requires,
43 entry_points="""
44 # -*- Entry points: -*-
45 [console_scripts]
46 rainbow=rainbowstream.rainbow:fly
47 """,
48 )