# Copyright 2023 VMware, Inc.  All rights reserved.
# -- VMware Confidential

load("@nsx_build//python:defs.bzl", "pystyle_test")
load("@rules_python//python:defs.bzl", "py_library")

exports_files(
    [
        "README",
        "sample-config.json",
    ],
    visibility = ["//mp:__subpackages__"],
)

py_library(
    name = "config",
    srcs = glob(
        [
            "**/*.py",
        ],
        exclude = [
            "test/**",
        ],
    ),
    visibility = ["//mp:__subpackages__"],
)

pystyle_test(
    name = "uens-adoption.style",
    srcs = glob(
        [
            "**/*.py",
        ],
    ),
    rcfile = ".pylintrc",
    tags = [
        "manual",
    ],
)
