mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-25 09:19:32 +01:00
3f6bcaec41
GitOrigin-RevId: 1f7dc5dd5e91cc885647063b888d4d9c2f61f43c
15 lines
307 B
Python
15 lines
307 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
py_binary(
|
|
name = "codeowners",
|
|
srcs = ["codeowners_generate.py"],
|
|
main = "codeowners_generate.py",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
dependency(
|
|
"pyyaml",
|
|
group = "core",
|
|
),
|
|
],
|
|
)
|