1# Copyright 2022 The Bazel Authors. All rights reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15"""Setup for rules_python tests and tools.""" 16 17load("@bazel_features//:deps.bzl", "bazel_features_deps") 18load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") 19load("@cgrindel_bazel_starlib//:deps.bzl", "bazel_starlib_dependencies") 20load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") 21load("@rules_bazel_integration_test//bazel_integration_test:deps.bzl", "bazel_integration_test_rules_dependencies") 22load("@rules_bazel_integration_test//bazel_integration_test:repo_defs.bzl", "bazel_binaries") 23load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains") 24load("//:version.bzl", "SUPPORTED_BAZEL_VERSIONS") 25load("//python/private:internal_config_repo.bzl", "internal_config_repo") # buildifier: disable=bzl-visibility 26load("//python/private/pypi:deps.bzl", "pypi_deps") # buildifier: disable=bzl-visibility 27 28def rules_python_internal_setup(): 29 """Setup for rules_python tests and tools.""" 30 31 internal_config_repo(name = "rules_python_internal") 32 33 # Because we don't use the pip_install rule, we have to call this to fetch its deps 34 pypi_deps() 35 36 bazel_skylib_workspace() 37 38 rules_proto_dependencies() 39 rules_proto_toolchains() 40 41 protobuf_deps() 42 43 bazel_integration_test_rules_dependencies() 44 bazel_starlib_dependencies() 45 bazel_binaries(versions = SUPPORTED_BAZEL_VERSIONS) 46 bazel_features_deps() 47