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

24 lines
443 B
Plaintext

# Description:
# AST round-trip manipulation for Python.
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
py_library(
name = "astunparse",
srcs = [
"astunparse/__init__.py",
"astunparse/printer.py",
"astunparse/unparser.py",
],
srcs_version = "PY2AND3",
)
genrule(
name = "license",
srcs = ["@astunparse_license"],
outs = ["LICENSE"],
cmd = "cp $< $@",
)