bumped veresion
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
1f2f6159 2import os, sys
91476ec3 3
1f2f6159 4# Bumped version
7348171d 5version = '0.4.7'
91476ec3 6
1f2f6159 7# Require
91476ec3 8install_requires = [
7a466a72
O
9 "python-dateutil",
10 "requests",
11 "pyfiglet",
819569e8 12 "SQLAlchemy",
991c30af
O
13 "twitter",
14 "Pillow",
7b674cef 15]
531f5682 16
1f2f6159 17# Python 3 doesn't hava pysqlite
3966e828 18if sys.version[0] == "2":
a5901ee1 19 install_requires += ["pysqlite"]
91476ec3 20
1f2f6159
O
21# Copy default config if not exists
22default = os.environ.get(
23 'HOME',
24 os.environ.get(
25 'USERPROFILE',
26 '')) + os.sep + '.rainbow_config.json'
27if not os.path.isfile(default):
28 cmd = 'cp rainbowstream/colorset/config ' + default
29 os.system(cmd)
30
31# Setup
91476ec3
O
32setup(name='rainbowstream',
33 version=version,
3f89ae3a 34 description="A smart and nice Twitter client on terminal.",
3108149e 35 long_description=open("./README.rst", "r").read(),
91476ec3
O
36 classifiers=[
37 "Development Status :: 5 - Production/Stable",
38 "Environment :: Console",
39 "Intended Audience :: End Users/Desktop",
40 "Natural Language :: English",
41 "Operating System :: OS Independent",
91476ec3 42 "Programming Language :: Python :: 2.7",
687567eb 43 "Programming Language :: Python :: 3.2",
44 "Programming Language :: Python :: 3.3",
1b752a04 45 "Programming Language :: Python :: 3.4",
91476ec3
O
46 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
47 "Topic :: Utilities",
48 "License :: OSI Approved :: MIT License",
7b674cef 49 ],
c333c6dc 50 keywords='twitter, command-line tools, stream API',
91476ec3 51 author='Vu Nhat Minh',
7a466a72 52 author_email='nhatminh179@gmail.com',
1b752a04 53 url='http://www.rainbowstream.org/',
91476ec3
O
54 license='MIT License',
55 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
56 include_package_data=True,
57 zip_safe=True,
58 install_requires=install_requires,
59 entry_points="""
60 # -*- Entry points: -*-
61 [console_scripts]
2a488171 62 rainbowstream=rainbowstream.rainbow:fly
91476ec3
O
63 """,
64 )