aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gast.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/gast.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/gast.BUILD')
-rw-r--r--third_party/gast.BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/gast.BUILD b/third_party/gast.BUILD
new file mode 100644
index 0000000000..0ccf8eff58
--- /dev/null
+++ b/third_party/gast.BUILD
@@ -0,0 +1,18 @@
+# Description:
+# Python AST that abstracts the underlying Python version.
+
+licenses(["notice"]) # BSD 3-clause
+
+exports_files(["LICENSE"])
+
+py_library(
+ name = "gast",
+ srcs = [
+ "gast/__init__.py",
+ "gast/ast2.py",
+ "gast/ast3.py",
+ "gast/astn.py",
+ "gast/gast.py",
+ ],
+ visibility = ["//visibility:public"],
+)