Bumped version 1.3.5
[rainbowstream.git] / setup.py
CommitLineData
91476ec3 1from setuptools import setup, find_packages
8141aca6 2import os
3import os.path
fe9ce36c
EO
4import sys
5
6if sys.version[0] == "2":
7 from pipes import quote
8else:
9 from shlex import quote
91476ec3 10
1f2f6159 11# Bumped version
4f025227 12version = '1.3.5'
91476ec3 13
1f2f6159 14# Require
91476ec3 15install_requires = [
7a466a72 16 "python-dateutil",
8b3456f9 17 "arrow",
f70d3477 18 "requests==2.5.3",
7a466a72 19 "pyfiglet",
991c30af
O
20 "twitter",
21 "Pillow",
337fa242
L
22 "PySocks",
23 "pocket"
7b674cef 24]
531f5682 25
fe9ce36c
EO
26# Default user (considers non virtualenv method)
27user = os.environ.get('SUDO_USER', os.environ['USER'])
28
1f2f6159 29# Copy default config if not exists
8619b00b 30default = os.path.expanduser("~") + os.sep + '.rainbow_config.json'
1f2f6159
O
31if not os.path.isfile(default):
32 cmd = 'cp rainbowstream/colorset/config ' + default
33 os.system(cmd)
fe9ce36c
EO
34 cmd = 'chown ' + quote(user) + ' ' + default
35 os.system(cmd)
21062aeb
O
36 cmd = 'chmod 777 ' + default
37 os.system(cmd)
1f2f6159
O
38
39# Setup
91476ec3
O
40setup(name='rainbowstream',
41 version=version,
3f89ae3a 42 description="A smart and nice Twitter client on terminal.",
fba038b1 43 long_description=open("./README.rst", "r").read(),
91476ec3
O
44 classifiers=[
45 "Development Status :: 5 - Production/Stable",
46 "Environment :: Console",
47 "Intended Audience :: End Users/Desktop",
48 "Natural Language :: English",
49 "Operating System :: OS Independent",
91476ec3 50 "Programming Language :: Python :: 2.7",
687567eb 51 "Programming Language :: Python :: 3.2",
52 "Programming Language :: Python :: 3.3",
1b752a04 53 "Programming Language :: Python :: 3.4",
86bfb662 54 "Programming Language :: Python :: 3.5",
91476ec3
O
55 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
56 "Topic :: Utilities",
57 "License :: OSI Approved :: MIT License",
7b674cef 58 ],
c333c6dc 59 keywords='twitter, command-line tools, stream API',
91476ec3 60 author='Vu Nhat Minh',
7a466a72 61 author_email='nhatminh179@gmail.com',
1b752a04 62 url='http://www.rainbowstream.org/',
91476ec3
O
63 license='MIT License',
64 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
65 include_package_data=True,
66 zip_safe=True,
67 install_requires=install_requires,
68 entry_points="""
69 # -*- Entry points: -*-
70 [console_scripts]
2a488171 71 rainbowstream=rainbowstream.rainbow:fly
91476ec3
O
72 """,
73 )