17 lines · plain
1# This file is licensed under the Apache License v2.0 with LLVM Exceptions.2# See https://llvm.org/LICENSE.txt for license information.3# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception4 5load("@rules_python//python:defs.bzl", "py_library")6 7package(8 default_visibility = ["//visibility:public"],9 # BSD/MIT-like license (for PyYAML)10 licenses = ["notice"],11)12 13py_library(14 name = "yaml",15 srcs = glob(["yaml/*.py"]),16)17