# Cloud TPU Client.

load("//tensorflow:tensorflow.bzl", "tf_py_test")

package(
    default_visibility = [
        "//tensorflow:internal",
    ],
    licenses = ["notice"],
)

py_library(
    name = "client",
    srcs = [
        "client.py",
        "version.py",
    ],
    srcs_version = "PY3",
    deps = [
        "@six_archive//:six",
    ],
)

py_library(
    name = "client_lib",
    srcs = [
        "__init__.py",
    ],
    srcs_version = "PY3",
    deps = [
        ":client",
        "@six_archive//:six",
    ],
)

tf_py_test(
    name = "client_py_test",
    size = "small",
    srcs = ["client_test.py"],
    grpc_enabled = True,
    main = "client_test.py",
    python_version = "PY3",
    tags = [
        "no_oss_py2",
    ],
    deps = [
        ":client",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:platform_test",
        "//tensorflow/python:training_server_lib",
    ],
)
