aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/data/experimental/BUILD
blob: 84e761d376372624cf1abac675409b6a57f84a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package(default_visibility = ["//tensorflow:internal"])

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

py_library(
    name = "experimental",
    srcs = ["__init__.py"],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/python:util",
        "//tensorflow/python/data/experimental/ops:dataset_ops",
        "//tensorflow/python/data/experimental/ops:iterator_ops",
    ],
)