mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
e1783cf083
GitOrigin-RevId: bd0dedac08c982ccabacfb2e61f66aac35703acb
16 lines
328 B
Python
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",
|
|
],
|
|
)
|