delete build folder
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
91476ec3 2
b737b20f 3version = '0.0.1'
91476ec3
O
4
5install_requires = [
819569e8 6 "SQLAlchemy",
085fd318 7 "pysqlite",
341c1794
O
8 "colorama",
9 "pyfiglet",
10 "python-dateutil",
11 "termcolor",
12 "twitter"
7b674cef 13]
91476ec3
O
14
15setup(name='rainbowstream',
16 version=version,
3108149e 17 description="A colorful terminal-based client for Twitter. Streaming also supported",
18 long_description=open("./README.rst", "r").read(),
91476ec3
O
19 classifiers=[
20 "Development Status :: 5 - Production/Stable",
21 "Environment :: Console",
22 "Intended Audience :: End Users/Desktop",
23 "Natural Language :: English",
24 "Operating System :: OS Independent",
25 "Programming Language :: Python :: 2.6",
26 "Programming Language :: Python :: 2.7",
27 "Programming Language :: Python :: 3.2",
28 "Programming Language :: Python :: 3.3",
29 "Programming Language :: Python :: 3.4",
30 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
31 "Topic :: Utilities",
32 "License :: OSI Approved :: MIT License",
7b674cef 33 ],
91476ec3
O
34 keywords='twitter, command-line tools, web 2.0, stream API',
35 author='Vu Nhat Minh',
36 author_email='nhatminh_179@hotmail.com',
13b5b854 37 url='https://github.com/DTVD/rainbowstream',
7b674cef 38 download_url='https://github.com/DTVD/rainbowstream/tarball/0.0.1',
91476ec3
O
39 license='MIT License',
40 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
41 include_package_data=True,
42 zip_safe=True,
43 install_requires=install_requires,
44 entry_points="""
45 # -*- Entry points: -*-
46 [console_scripts]
092ddf4d 47 rainbow=rainbowstream.rainbow:fly
91476ec3
O
48 """,
49 )