STT-tensorflow/tensorflow/python/autograph/BUILD
Dan Moldovan 721cd00d7c Mark the main AutoGraph target as Py3-only.
PiperOrigin-RevId: 337510412
Change-Id: I9b53a3d84bd8145486bc1b8815d0e5d88926be8e
2020-10-16 08:37:42 -07:00

35 lines
773 B
Python

load("//tensorflow:tensorflow.bzl", "py_strict_library")
package(
licenses = ["notice"], # Apache 2.0
)
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
),
visibility = ["//tensorflow:__subpackages__"],
)
py_strict_library(
name = "autograph",
srcs = [
"__init__.py",
],
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
"//tensorflow/python:util",
"//tensorflow/python/autograph/core",
"//tensorflow/python/autograph/impl",
"//tensorflow/python/autograph/lang",
"//tensorflow/python/autograph/operators",
"//tensorflow/python/autograph/utils",
],
)