aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gast.BUILD
diff options
context:
space:
mode:
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"],
+)