aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/termcolor.BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-06 05:34:03 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-06 05:37:14 -0800
commit4080654c8f03ec34f2822c14db5fd8b75f63d569 (patch)
tree97fa37296f2a6edc3ab2be03b27ca43630e5efca /third_party/termcolor.BUILD
parent037372630d499a956f83ded5a2565b442fa3392f (diff)
Add bazel file for astor, gast and termcolor. Rewrite these deps' internal counterparts instead of removing them. Re-enable a few tests to verify.
PiperOrigin-RevId: 181035075
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"],
+)