mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-11 22:09:24 +01:00
16a151ae19
GitOrigin-RevId: 55a38effd769ab15a3e0893cac84754ffb1de5a0
18 lines
415 B
Python
18 lines
415 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "configurator",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("jinja2"),
|
|
requirement("pyyaml"),
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|