20 lines
393 B
Plaintext
20 lines
393 B
Plaintext
# 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"],
|
|
)
|