1# Description: 2# AST round-trip manipulation for Python. 3 4licenses(["notice"]) # New BSD 5 6exports_files(["LICENSE"]) 7 8py_library( 9 name = "astor", 10 srcs = [ 11 "astor/__init__.py", 12 "astor/code_gen.py", 13 "astor/codegen.py", 14 "astor/file_util.py", 15 "astor/node_util.py", 16 "astor/op_util.py", 17 "astor/rtrip.py", 18 "astor/source_repr.py", 19 "astor/string_repr.py", 20 "astor/tree_walk.py", 21 ], 22 srcs_version = "PY3", 23 visibility = ["//visibility:public"], 24) 25