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