aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/termcolor.BUILD
blob: 655d7cb85e584027d12014c53718a15e2522b4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Description:
#   This is a library for outputing color to the terminal.

licenses(["notice"])  # MIT

exports_files(["COPYING.txt"])

py_library(
    name = "termcolor",
    srcs = [
        "termcolor.py",
    ],
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
)