blob: 8dba6e0384b35828f307163078d098a36d808cd2 [file] [log] [blame]
py_library(
name = "lib",
srcs = ["lib.py"],
)
py_binary(
name = "bin",
srcs = ["bin.py"],
deps = [":lib"],
)
filegroup(
name = "srcs",
srcs = ["BUILD"] + glob(["**/*.py"]),
visibility = ["//examples:__pkg__"],
)