1{# Copyright © 2024 Google Inc.
2 SPDX-License-Identifier: MIT
3#}
4py_binary(
5 name = "{{ name }}",
6 main = "{{ main }}",
7 srcs = [
8 {%- for src in srcs %}
9 "{{ src }}",
10 {%- endfor %}
11 ],
12 imports = [
13 {%- for import in imports %}
14 "{{ import }}",
15 {%- endfor %}
16 ],
17)
18