BUILD (334B)
1 load("@rules_python//python:defs.bzl", "py_binary") 2 load("//bazel:local-deploy.bzl", "local_deploy") 3 4 py_binary( 5 name = "shuffle", 6 srcs = ["shuffle.py"], 7 main = "shuffle.py", 8 python_version = "PY3", 9 legacy_create_init = 0, 10 ) 11 12 local_deploy( 13 name = "deploy", 14 srcs = [":shuffle"], 15 copy_runfiles = True, 16 )