aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gast.BUILD
blob: 0ccf8eff58ef38cb9bc52eaa89d61c83fefc6f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Description:
#   Python AST that abstracts the underlying Python version.

licenses(["notice"])  # BSD 3-clause

exports_files(["LICENSE"])

py_library(
    name = "gast",
    srcs = [
        "gast/__init__.py",
        "gast/ast2.py",
        "gast/ast3.py",
        "gast/astn.py",
        "gast/gast.py",
    ],
    visibility = ["//visibility:public"],
)