aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/data/BUILD
blob: 38f1c65a4d5c33ab2558fa9277b512ab86e98959 (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 = "data",
    srcs = ["__init__.py"],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/contrib/data/python/ops:dataset_ops",
        "//tensorflow/contrib/data/python/ops:iterator_ops",
        "//tensorflow/python:util",
    ],
)