mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
257 B
Python
12 lines
257 B
Python
load("@codegen_deps//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "lib",
|
|
srcs = glob(["*.py"]),
|
|
visibility = ["//misc/codegen:__subpackages__"],
|
|
deps = [
|
|
requirement("pystache"),
|
|
requirement("inflection"),
|
|
],
|
|
)
|