fix bug setup.py
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2 import sys
3
4 version = '0.3.2'
5
6 install_requires = [
7 "python-dateutil",
8 "requests",
9 "pyfiglet",
10 "SQLAlchemy",
11 "twitter",
12 "Pillow",
13 ]
14 if sys.version[0] == "2":
15 install_requires += ["pysqlite"]
16
17 setup(name='rainbowstream',
18 version=version,
19 description="A smart and nice Twitter client on terminal.",
20 long_description=open("./README.rst", "r").read(),
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",
27 "Programming Language :: Python :: 2.7",
28 "Programming Language :: Python :: 3.2",
29 "Programming Language :: Python :: 3.3",
30 "Programming Language :: Python :: 3.4",
31 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
32 "Topic :: Utilities",
33 "License :: OSI Approved :: MIT License",
34 ],
35 keywords='twitter, command-line tools, stream API',
36 author='Vu Nhat Minh',
37 author_email='nhatminh179@gmail.com',
38 url='http://www.rainbowstream.org/',
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]
47 rainbowstream=rainbowstream.rainbow:fly
48 """,
49 )