aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/termcolor.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/termcolor.BUILD')
-rw-r--r--third_party/termcolor.BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/termcolor.BUILD b/third_party/termcolor.BUILD
new file mode 100644
index 0000000000..94fcb3beaa
--- /dev/null
+++ b/third_party/termcolor.BUILD
@@ -0,0 +1,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"],
+)