mirror of https://github.com/mongodb/mongo
27 lines
609 B
Python
27 lines
609 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
py_library(
|
|
name = "patch_builds",
|
|
srcs = [
|
|
"change_data.py",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
dependency(
|
|
"structlog",
|
|
group = "evergreen",
|
|
),
|
|
dependency(
|
|
"gitpython",
|
|
group = "evergreen",
|
|
),
|
|
],
|
|
)
|
|
|
|
# TODO(SERVER-105817): The following library is autogenerated, please split these out into individual python targets
|
|
py_library(
|
|
name = "all_python_files",
|
|
srcs = glob(["*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|