mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 08:52:54 +01:00
337dd78fd1
GitOrigin-RevId: f9aac9b956977973b8aa3ea4e4259ea57bcdf821
21 lines
483 B
Python
21 lines
483 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "installer",
|
|
srcs = glob([
|
|
"**/*.py",
|
|
]),
|
|
imports = ["."],
|
|
main = "main.py",
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("aioipfs"),
|
|
requirement("fire"),
|
|
requirement("pyyaml"),
|
|
requirement("tantipy"),
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|