aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/astor.BUILD
blob: 58fe9acf3326fbb81469a324d7ecd6c8569b2642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 = "PY2AND3",
    visibility = ["//visibility:public"],
)