hyperboria/nexus/translations/BUILD.bazel

16 lines
328 B
Python
Raw Normal View History

load("@rules_python//python:defs.bzl", "py_library")
py_library(
name = "translations",
srcs = glob(
["**/*.py"],
exclude = ["tests/**"],
),
data = ["translations.yaml"],
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
"//library/configurator",
],
)