26 lines
654 B
Python
26 lines
654 B
Python
module(
|
|
name = "databuild",
|
|
version = "0.1",
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
|
bazel_dep(name = "platforms", version = "0.0.11")
|
|
bazel_dep(name = "rules_shell", version = "0.4.0")
|
|
|
|
bazel_dep(name = "rules_go", version = "0.46.0")
|
|
|
|
bazel_dep(name = "rules_python", version = "1.3.0")
|
|
|
|
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
|
|
python.toolchain(
|
|
python_version = "3.13",
|
|
)
|
|
|
|
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
|
|
pip.parse(
|
|
hub_name = "pypi",
|
|
python_version = "3.13",
|
|
requirements_lock = "//:requirements_lock.txt",
|
|
)
|
|
|
|
use_repo(pip, "pypi")
|