Twitter Oauth message
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
3966e828 2import sys
91476ec3 3
2e1241c7 4version = '0.3.4'
91476ec3
O
5
6install_requires = [
7a466a72
O
7 "python-dateutil",
8 "requests",
9 "pyfiglet",
819569e8 10 "SQLAlchemy",
991c30af
O
11 "twitter",
12 "Pillow",
7b674cef 13]
3966e828 14if sys.version[0] == "2":
a5901ee1 15 install_requires += ["pysqlite"]
91476ec3
O
16
17setup(name='rainbowstream',
18 version=version,
3f89ae3a 19 description="A smart and nice Twitter client on terminal.",
3108149e 20 long_description=open("./README.rst", "r").read(),
91476ec3
O
21 classifiers=[
22 "Development Status :: 5 - Production/Stable",
23 "Environment :: Console",
24 "Intended Audience :: End Users/Desktop",
25 "Natural Language :: English",
26 "Operating System :: OS Independent",
91476ec3 27 "Programming Language :: Python :: 2.7",
1b752a04 28 "Programming Language :: Python :: 3.2",
29 "Programming Language :: Python :: 3.3",
30 "Programming Language :: Python :: 3.4",
91476ec3
O
31 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
32 "Topic :: Utilities",
33 "License :: OSI Approved :: MIT License",
7b674cef 34 ],
c333c6dc 35 keywords='twitter, command-line tools, stream API',
91476ec3 36 author='Vu Nhat Minh',
7a466a72 37 author_email='nhatminh179@gmail.com',
1b752a04 38 url='http://www.rainbowstream.org/',
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]
2a488171 47 rainbowstream=rainbowstream.rainbow:fly
91476ec3
O
48 """,
49 )