You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
389 B

# 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 = "PY3",
visibility = ["//visibility:public"],
)