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

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

exports_files(["PKG-INFO"])

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