14 lines
287 B
Python
14 lines
287 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
exports_files(["evergreen_git.py"])
|
|
|
|
py_library(
|
|
name = "evergreen_git",
|
|
srcs = ["evergreen_git.py"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
dependency("pyyaml"),
|
|
dependency("gitpython"),
|
|
],
|
|
)
|