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