forked from captain-pool/GSOC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
39 lines (35 loc) · 765 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
py_binary(
name = "export",
srcs = ["export.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
deps = [":export_lib"],
)
py_library(
name = "export_lib",
srcs = ["export.py"],
srcs_version = "PY2AND3",
deps = [
":expect_numpy_installed",
":expect_tensorflow_installed",
"//external:tensorflow_hub",
],
)
py_test(
name = "export_test",
srcs = ["export_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
deps = [
":expect_numpy_installed",
":expect_tensorflow_installed",
":export_lib",
"//external:tensorflow_hub",
],
)
py_library(
name = "expect_tensorflow_installed",
)
py_library(
name = "expect_numpy_installed",
)