aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/BUILD
blob: 3d8de94251dd07c50cf3807d375a35ac10073748 (plain)
1
2
3
4
5
6
7
8
9
10
py_binary(
    name = "bin",
    srcs = ["bin.py"],
    deps = [":lib"],
)

py_library(
    name = "lib",
    srcs = ["lib.py"],
)