| # Copyright 2017 The Bazel Authors. All rights reserved. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| """Rules for pip integration. |
| |
| This contains a set of rules that are used to support inclusion of third-party |
| dependencies via fully locked `requirements.txt` files. Some of the exported |
| symbols should not be used and they are either undocumented here or marked as |
| for internal use only. |
| """ |
| |
| load("//python/private:normalize_name.bzl", "normalize_name") |
| load("//python/private/pypi:multi_pip_parse.bzl", _multi_pip_parse = "multi_pip_parse") |
| load("//python/private/pypi:package_annotation.bzl", _package_annotation = "package_annotation") |
| load("//python/private/pypi:pip_compile.bzl", "pip_compile") |
| load("//python/private/pypi:pip_repository.bzl", "pip_repository") |
| load("//python/private/pypi:whl_library_alias.bzl", _whl_library_alias = "whl_library_alias") |
| load("//python/private/whl_filegroup:whl_filegroup.bzl", _whl_filegroup = "whl_filegroup") |
| |
| compile_pip_requirements = pip_compile |
| package_annotation = _package_annotation |
| pip_parse = pip_repository |
| whl_filegroup = _whl_filegroup |
| |
| # Extra utilities visible to rules_python users. |
| pip_utils = struct( |
| normalize_name = normalize_name, |
| ) |
| |
| # The following are only exported here because they are used from |
| # multi_toolchain_aliases repository_rule, not intended for public use. |
| # |
| # See ./private/toolchains_repo.bzl |
| multi_pip_parse = _multi_pip_parse |
| whl_library_alias = _whl_library_alias |