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

licenses(["notice"])  # MIT

exports_files(["LICENSE"])

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