24 lines
443 B
Plaintext
24 lines
443 B
Plaintext
# Description:
|
|
# AST round-trip manipulation for Python.
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
py_library(
|
|
name = "astunparse",
|
|
srcs = [
|
|
"astunparse/__init__.py",
|
|
"astunparse/printer.py",
|
|
"astunparse/unparser.py",
|
|
],
|
|
srcs_version = "PY2AND3",
|
|
)
|
|
|
|
genrule(
|
|
name = "license",
|
|
srcs = ["@astunparse_license"],
|
|
outs = ["LICENSE"],
|
|
cmd = "cp $< $@",
|
|
)
|