mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
294 B
Python
12 lines
294 B
Python
load("@swift_codegen_deps//:requirements.bzl", "requirement")
|
|
py_library(
|
|
name = "lib",
|
|
srcs = glob(["*.py"]),
|
|
deps = [
|
|
requirement("pystache"),
|
|
requirement("pyyaml"),
|
|
requirement("inflection"),
|
|
],
|
|
visibility = ["//swift/codegen:__subpackages__"],
|
|
)
|