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