mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-19 08:07:48 +01:00
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",
|
||
|
],
|
||
|
)
|