BUILD 521 B

12345678910111213141516171819
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@rules_python//python:defs.bzl", "py_binary", "py_test")
  5. py_binary(
  6. name = "new_proposal",
  7. srcs = ["new_proposal.py"],
  8. python_version = "PY3",
  9. )
  10. py_test(
  11. name = "new_proposal_test",
  12. srcs = ["new_proposal_test.py"],
  13. data = ["template.md"],
  14. python_version = "PY3",
  15. deps = [":new_proposal"],
  16. )