BUILD 334 Bytes
Newer Older
zhanggzh's avatar
zhanggzh committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
licenses(["notice"])  # Apache 2.0

package(default_visibility = ["//visibility:public"])

config_setting(
    name = "windows",
    constraint_values = ["@bazel_tools//platforms:windows"],
)

py_library(
    name = "keras_cv",
    srcs = glob(["**/*.py"]),
    data = [
      "//keras_cv/custom_ops:_keras_cv_custom_ops.so",
    ]
)