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