forked from nicoulaj/rainbow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import os, glob
from distutils.core import setup
setup(
name = "rainbow",
version = "2.5.0",
author = "Julien Nicoulaud",
author_email = "[email protected]",
description = ("Colorize commands output or STDIN using patterns."),
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
license = "GPLv3",
url = "https://github.com/nicoulaj/rainbow",
keywords = "color colorize colorizer pattern",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Topic :: System",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
scripts=['rainbow'],
data_files=[
('/usr/share/rainbow/configs', glob.glob('configs/*')),
('/etc/bash_completion.d', ['completion/bash/rainbow']),
('/usr/share/zsh/site-functions', ['completion/zsh/_rainbow'])
]
)