blob: 966f6a55d3296e811507d914454d9389aed877f7 [file] [log] [blame]
# 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"],
)