Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.bazelci/ | H | 25-Apr-2025 | - | 608 | 528 | |
.bcr/ | H | 25-Apr-2025 | - | 135 | 85 | |
.ci/ | H | 25-Apr-2025 | - | 10 | 9 | |
.github/ | H | 25-Apr-2025 | - | 486 | 296 | |
docs/ | H | 25-Apr-2025 | - | 2,749 | 2,165 | |
examples/ | H | 25-Apr-2025 | - | 17,510 | 15,954 | |
gazelle/ | H | 25-Apr-2025 | - | 13,247 | 7,591 | |
python/ | H | 25-Apr-2025 | - | 27,368 | 23,010 | |
sphinxdocs/ | H | 25-Apr-2025 | - | 5,138 | 4,057 | |
tests/ | H | 25-Apr-2025 | - | 14,367 | 12,131 | |
third_party/rules_pycross/ | H | 25-Apr-2025 | - | 649 | 542 | |
tools/ | H | 25-Apr-2025 | - | 2,600 | 2,117 | |
.bazelignore | H A D | 25-Apr-2025 | 1.3 KiB | 29 | 28 | |
.bazelrc | H A D | 25-Apr-2025 | 4.5 KiB | 37 | 29 | |
.bazelversion | H A D | 25-Apr-2025 | 6 | 2 | 1 | |
.git-blame-ignore-revs | H A D | 25-Apr-2025 | 82 | 3 | 2 | |
.gitattributes | H A D | 25-Apr-2025 | 44 | 2 | 1 | |
.gitignore | H A D | 25-Apr-2025 | 629 | 56 | 44 | |
.pre-commit-config.yaml | H A D | 25-Apr-2025 | 1.8 KiB | 54 | 35 | |
.readthedocs.yml | H A D | 25-Apr-2025 | 284 | 15 | 10 | |
AUTHORS | H A D | 25-Apr-2025 | 305 | 10 | 7 | |
BUILD.bazel | H A D | 25-Apr-2025 | 2.6 KiB | 98 | 87 | |
BZLMOD_SUPPORT.md | H A D | 25-Apr-2025 | 3 KiB | 62 | 40 | |
CHANGELOG.md | H A D | 25-Apr-2025 | 45.4 KiB | 935 | 758 | |
CONTRIBUTING.md | H A D | 25-Apr-2025 | 10.2 KiB | 270 | 197 | |
CONTRIBUTORS | H A D | 25-Apr-2025 | 477 | 13 | 11 | |
DEVELOPING.md | H A D | 25-Apr-2025 | 2.1 KiB | 51 | 36 | |
LICENSE | H A D | 25-Apr-2025 | 11.1 KiB | 202 | 169 | |
METADATA | H A D | 25-Apr-2025 | 587 | 20 | 18 | |
MODULE.bazel | H A D | 25-Apr-2025 | 4.4 KiB | 146 | 128 | |
MODULE_LICENSE_APACHE2 | HD | 25-Apr-2025 | 0 | |||
OWNERS | H A D | 25-Apr-2025 | 30 | 3 | 1 | |
README.md | H A D | 25-Apr-2025 | 1.4 KiB | 32 | 19 | |
WORKSPACE | H A D | 25-Apr-2025 | 4.8 KiB | 148 | 110 | |
WORKSPACE.bzlmod | H A D | 25-Apr-2025 | 2.3 KiB | 63 | 53 | |
addlicense.sh | H A D | 25-Apr-2025 | 869 | 24 | 6 | |
internal_deps.bzl | H A D | 25-Apr-2025 | 9.9 KiB | 226 | 200 | |
internal_setup.bzl | H A D | 25-Apr-2025 | 2 KiB | 47 | 37 | |
version.bzl | H A D | 25-Apr-2025 | 1.5 KiB | 40 | 35 |
README.md
1# Python Rules for Bazel 2 3[](https://buildkite.com/bazel/rules-python-python) 4 5## Overview 6 7This repository is the home of the core Python rules -- `py_library`, 8`py_binary`, `py_test`, `py_proto_library`, and related symbols that provide the basis for Python 9support in Bazel. It also contains package installation rules for integrating with PyPI and other indices. 10 11Documentation for rules_python is at <https://rules-python.readthedocs.io> and in the 12[Bazel Build Encyclopedia](https://docs.bazel.build/versions/master/be/python.html). 13 14Examples live in the [examples](examples) directory. 15 16The core rules are stable. Their implementation is subject to Bazel's 17[backward compatibility policy](https://docs.bazel.build/versions/master/backward-compatibility.html). 18This repository aims to follow [semantic versioning](https://semver.org). 19 20The Bazel community maintains this repository. Neither Google nor the Bazel team provides support for the code. However, this repository is part of the test suite used to vet new Bazel releases. See [How to contribute](CONTRIBUTING.md) page for information on our development workflow. 21 22## Documentation 23 24For detailed documentation, see <https://rules-python.readthedocs.io> 25 26## Bzlmod support 27 28- Status: Beta 29- Full Feature Parity: No 30 31See [Bzlmod support](BZLMOD_SUPPORT.md) for more details. 32