2025-06-23 09:13:43 +00:00
|
|
|
load("@rules_python//python/entry_points:py_console_script_binary.bzl", "py_console_script_binary")
|
|
|
|
|
load("@rules_python//python/uv:lock.bzl", uv_lock = "lock")
|
|
|
|
|
|
|
|
|
|
py_console_script_binary(
|
|
|
|
|
name = "hf",
|
|
|
|
|
pkg = "@huggingface_hub//huggingface_hub",
|
|
|
|
|
tags = ["manual"],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
uv_lock(
|
|
|
|
|
name = "requirements",
|
2025-07-16 10:01:41 +00:00
|
|
|
srcs = ["requirements.in"],
|
2025-06-23 09:13:43 +00:00
|
|
|
out = "requirements.lock.txt",
|
|
|
|
|
args = ["--upgrade"],
|
|
|
|
|
tags = ["manual"],
|
|
|
|
|
)
|