| 1234567891011121314151617181920 |
- module(name = "www_gdritter_site")
- bazel_dep(name = "rules_python", version = "1.8.0-rc3")
- python = use_extension("@rules_python//python/extensions:python.bzl", "python")
- python.toolchain(python_version = "3.9.25")
- use_repo(
- python,
- python_3_9 = "python_3_9_25",
- )
- pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
- pip.parse(
- download_only = True,
- hub_name = "pypi",
- python_version = "3.9.25",
- requirements_lock = "//:requirements.txt",
- )
- use_repo(pip, "pypi")
|