mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-03 07:25:48 +01:00
19 lines
455 B
Python
19 lines
455 B
Python
|
load("@pip_modules_external//: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("orjson"),
|
||
|
requirement("pyyaml"),
|
||
|
requirement("izihawa_utils"),
|
||
|
],
|
||
|
)
|