1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# cs/labs/python/BUILD
package(default_visibility = ["//visibility:public"])
py_library(
name = "hello_world_gpt_py",
srcs = ["hello_world.gpt.py"],
)
py_test(
name = "hello_world_test_gpt_py",
srcs = ["hello_world_test.gpt.py"],
data = [
"BUILD",
"acl.json",
],
main = "hello_world_test.gpt.py",
deps = [":hello_world_gpt_py"],
)