the-superpirate a683e0ce18 - [nexus] Development
- [nexus] Development

GitOrigin-RevId: 5d5feedff7b70be4c788abeb22f89c6758431d33
2022-09-13 17:28:58 +03:00

16 lines
339 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 = [
requirement("izihawa_configurator"),
],
)