summaryrefslogtreecommitdiff
path: root/ansicolor/__init__.py
blob: 75dc344be252329b670c050dc71d54d270535f30 (plain)
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
36
from __future__ import absolute_import

from ansicolor.ansicolor import *  # noqa


__all__ = [
    'black',
    'blue',
    'cyan',
    'green',
    'magenta',
    'red',
    'white',
    'yellow',

    'colorize',
    'wrap_string',
    'get_code',

    'highlight_string',
    'get_highlighter',

    'strip_escapes',
    'justify_formatted',

    'colordiff',
    'set_term_title',
    'write_out',
    'write_err',

    'Colors',
]

__major_version__ = "0.2"
__release__ = "3"
__version__ = "%s.%s" % (__major_version__, __release__)