2e126f68dcd26ab0c65ffd6bca6ceadfa79651d1
1 from setuptools
import setup
, find_packages
18 # Copy default config if not exists
19 default
= os
.path
.expanduser("~") + os
.sep
+ '.rainbow_config.json'
20 if not os
.path
.isfile(default
):
21 cmd
= 'cp rainbowstream/colorset/config ' + default
23 cmd
= 'chmod 777 ' + default
27 setup(name
='rainbowstream',
29 description
="A smart and nice Twitter client on terminal.",
30 long_description
=open("./README.rst", "r").read(),
32 "Development Status :: 5 - Production/Stable",
33 "Environment :: Console",
34 "Intended Audience :: End Users/Desktop",
35 "Natural Language :: English",
36 "Operating System :: OS Independent",
37 "Programming Language :: Python :: 2.7",
38 "Programming Language :: Python :: 3.2",
39 "Programming Language :: Python :: 3.3",
40 "Programming Language :: Python :: 3.4",
41 "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
43 "License :: OSI Approved :: MIT License",
45 keywords
='twitter, command-line tools, stream API',
46 author
='Vu Nhat Minh',
47 author_email
='nhatminh179@gmail.com',
48 url
='http://www.rainbowstream.org/',
49 license
='MIT License',
50 packages
=find_packages(exclude
=['ez_setup', 'examples', 'tests']),
51 include_package_data
=True,
53 install_requires
=install_requires
,
55 # -*- Entry points: -*-
57 rainbowstream=rainbowstream.rainbow:fly