STT-tensorflow/third_party/pasta/BUILD.bazel
Martin Wicke 6c8cbdcecc Update pasta dependency to 0.1.8, allowing for using @ in code converted by tf_upgrade_v2.
(cf #29871)

PiperOrigin-RevId: 280208993
Change-Id: Ia604e0ce832c7fb2adb5c2eff631a7cd1e0c2629
2019-11-13 10:37:21 -08:00

32 lines
779 B
Python

# Description:
# AST-based python refactoring.
load("@//third_party/pasta:build_defs.bzl", "copy_srcs")
licenses(["notice"]) # Apache2
exports_files(["LICENSE"])
py_library(
name = "pasta",
srcs = copy_srcs([
"__init__.py",
"augment/__init__.py",
"augment/errors.py",
"augment/import_utils.py",
"augment/inline.py",
"augment/rename.py",
"base/__init__.py",
"base/annotate.py",
"base/ast_constants.py",
"base/ast_utils.py",
"base/codegen.py",
"base/formatting.py",
"base/fstring_utils.py",
"base/scope.py",
"base/test_utils.py",
"base/token_generator.py",
]),
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)