syntax check
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.0.1'
4
5 install_requires = [
6 "colorama",
7 "pyfiglet",
8 "python-dateutil",
9 "termcolor",
10 "twitter"
11 ]
12
13 setup(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='https://github.com/DTVD/rainbowstream',
36 download_url='https://github.com/DTVD/rainbowstream/tarball/0.0.1',
37 license='MIT License',
38 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
39 include_package_data=True,
40 zip_safe=True,
41 install_requires=install_requires,
42 entry_points="""
43 # -*- Entry points: -*-
44 [console_scripts]
45 rainbow=rainbowstream.rainbow:fly
46 """,
47 )