16 lines
427 B
Python
16 lines
427 B
Python
load("@rules_python//python:py_library.bzl", "py_library")
|
|
load("@rules_python//python/entry_points:py_console_script_binary.bzl", "py_console_script_binary")
|
|
|
|
py_library(
|
|
name = "zml_utils",
|
|
srcs = ["zml_utils.py"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
py_console_script_binary(
|
|
name = "hf",
|
|
pkg = "@huggingface_hub//huggingface_hub:pkg",
|
|
script = "hf",
|
|
visibility = ["//visibility:public"],
|
|
)
|