mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
cca9e8be47
- feat: Set up delays for Crossref API GitOrigin-RevId: 3448e1c2a9fdfca2f8bf95d37e1d62cc5a221577
15 lines
384 B
Python
15 lines
384 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "make_deb",
|
|
srcs = ["make_deb.py"],
|
|
srcs_version = "PY2AND3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@bazel_tools//tools/build_defs/pkg:archive",
|
|
requirement("python-gflags"),
|
|
requirement("six"),
|
|
],
|
|
)
|