STT-tensorflow/third_party/astor.BUILD
A. Unique TensorFlower 985ad0276a PY2 removal cleanup
PiperOrigin-RevId: 352907145
Change-Id: I82de30d92dc9c2b53215d6d5732c67afe339c23d
2021-01-20 17:11:44 -08:00

25 lines
537 B
Plaintext

# Description:
# AST round-trip manipulation for Python.
licenses(["notice"]) # New BSD
exports_files(["LICENSE"])
py_library(
name = "astor",
srcs = [
"astor/__init__.py",
"astor/code_gen.py",
"astor/codegen.py",
"astor/file_util.py",
"astor/node_util.py",
"astor/op_util.py",
"astor/rtrip.py",
"astor/source_repr.py",
"astor/string_repr.py",
"astor/tree_walk.py",
],
srcs_version = "PY3",
visibility = ["//visibility:public"],
)