aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/termcolor.BUILD
blob: 6000e3289deff8183193883a9b796da9384365b8 (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(["LICENSE"])

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