1# Description:
2# This is a library for outputing color to the terminal.
3
4licenses(["notice"]) # MIT
5
6exports_files(["COPYING.txt"])
7
8py_library(
9 name = "termcolor",
10 srcs = [
11 "termcolor.py",
12 ],
13 srcs_version = "PY3",
14 visibility = ["//visibility:public"],
15)
16