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