kse-01/tensorflow/third_party/gast.BUILD
github-classroom[bot] 05b050893c
Initial commit
2023-10-09 11:37:31 +00:00

20 lines
393 B
Plaintext

# Description:
# Python AST that abstracts the underlying Python version.
licenses(["notice"]) # BSD 3-clause
exports_files(["PKG-INFO"])
py_library(
name = "gast",
srcs = [
"gast/__init__.py",
"gast/ast2.py",
"gast/ast3.py",
"gast/astn.py",
"gast/gast.py",
],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)