20 lines
441 B
Python
20 lines
441 B
Python
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
sh_binary(
|
|
name = "augment_sbom",
|
|
srcs = ["augment_sbom.sh"],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "write_aws_creds_to_silkbomb_env_file",
|
|
srcs = ["write_aws_creds_to_silkbomb_env_file.sh"],
|
|
)
|
|
|
|
py_library(
|
|
name = "all_python_files",
|
|
srcs = glob(["*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|