hyperboria/nexus/translations/BUILD.bazel
the-superpirate e1783cf083 - Open translations
GitOrigin-RevId: bd0dedac08c982ccabacfb2e61f66aac35703acb
2021-01-07 16:29:54 +03:00

16 lines
328 B
Python

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",
],
)