mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
20 lines
381 B
Text
20 lines
381 B
Text
load("@rules_python//python:defs.bzl", "py_binary")
|
|
load("@py_deps//:requirements.bzl", "requirement")
|
|
|
|
py_binary(
|
|
name = "update",
|
|
srcs = ["update.py"],
|
|
data = [
|
|
"requirements.in",
|
|
"requirements.txt",
|
|
],
|
|
tags = ["manual"],
|
|
deps = [
|
|
requirement("pip-tools"),
|
|
],
|
|
)
|
|
|
|
exports_files([
|
|
"requirements.txt",
|
|
"licenses.json",
|
|
])
|