delete unused
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3
O
2
3version = '0.0.1'
4
5install_requires = [
819569e8 6 "SQLAlchemy",
341c1794
O
7 "colorama",
8 "pyfiglet",
9 "python-dateutil",
10 "termcolor",
11 "twitter"
7b674cef 12]
91476ec3
O
13
14setup(name='rainbowstream',
15 version=version,
16 description="A rainbow streaming console for Twitter (twitter.com)",
17 long_description=open("./README.md", "r").read(),
91476ec3
O
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",
7b674cef 32 ],
91476ec3
O
33 keywords='twitter, command-line tools, web 2.0, stream API',
34 author='Vu Nhat Minh',
35 author_email='nhatminh_179@hotmail.com',
13b5b854 36 url='https://github.com/DTVD/rainbowstream',
7b674cef 37 download_url='https://github.com/DTVD/rainbowstream/tarball/0.0.1',
91476ec3
O
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]
092ddf4d 46 rainbow=rainbowstream.rainbow:fly
91476ec3
O
47 """,
48 )