d55414a00e60521f03d0c41d8ac0541f0015037d
[rainbowstream.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.2.6'
4
5 install_requires = [
6 "python-dateutil",
7 "requests",
8 "pyfiglet",
9 "SQLAlchemy",
10 "pysqlite",
11 "twitter",
12 "Pillow",
13 ]
14
15 setup(name='rainbowstream',
16 version=version,
17 description="A smart and nice Twitter client on terminal.",
18 long_description=open("./README.rst", "r").read(),
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 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
28 "Topic :: Utilities",
29 "License :: OSI Approved :: MIT License",
30 ],
31 keywords='twitter, command-line tools, web 2.0, stream API',
32 author='Vu Nhat Minh',
33 author_email='nhatminh179@gmail.com',
34 url='https://github.com/DTVD/rainbowstream',
35 license='MIT License',
36 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
37 include_package_data=True,
38 zip_safe=True,
39 install_requires=install_requires,
40 entry_points="""
41 # -*- Entry points: -*-
42 [console_scripts]
43 rainbowstream=rainbowstream.rainbow:fly
44 """,
45 )