blob: 50774c38f7e7e6d7df388ae0c78415b6c5ea5902 [file] [log] [blame]
python_library(
name = "torchgen",
srcs = glob(
["**/*.py"],
),
base_module = "torchgen",
visibility = ["PUBLIC"],
deps = [
"//third_party:pyyaml",
"//third_party:typing-extensions",
],
)
python_binary(
name = "gen",
main_module = "torchgen.gen",
visibility = [
"PUBLIC",
],
deps = [
":torchgen",
],
)