19 lines
396 B
Python
19 lines
396 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
load("@rules_python//python:defs.bzl", "py_binary")
|
|
|
|
py_binary(
|
|
name = "resmoke_proxy",
|
|
srcs = [
|
|
"__init__.py",
|
|
"resmoke_proxy.py",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//buildscripts:resmoke",
|
|
dependency(
|
|
"inject",
|
|
group = "evergreen",
|
|
),
|
|
],
|
|
)
|