the-superpirate 52d3985ec5 - [promotions] Export
GitOrigin-RevId: 9450124ab0308c005508e24418e3c1753ea2fdba
2022-09-06 20:16:13 +03:00

16 lines
324 B
Python

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