BUILD 541 B

1234567891011121314151617181920
  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. size = "small",
  13. srcs = ["new_proposal_test.py"],
  14. data = ["template.md"],
  15. python_version = "PY3",
  16. deps = [":new_proposal"],
  17. )