-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBUILD
33 lines (28 loc) · 880 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2023 Intrinsic Innovation LLC
load("@bazel_gazelle//:def.bzl", "gazelle")
load("@rules_python//python:pip.bzl", "compile_pip_requirements")
gazelle(name = "gazelle")
exports_files(
srcs = [
".bazelrc",
".bazelversion",
],
visibility = ["//intrinsic/tools/inctl/cmd/bazel/templates:__subpackages__"],
)
exports_files(
srcs = [
"MODULE.bazel",
"requirements.in",
"requirements.txt",
],
visibility = ["//intrinsic/production/external:__pkg__"],
)
compile_pip_requirements(
name = "requirements_sdk",
src = "requirements.in",
generate_hashes = True,
requirements_txt = "requirements.txt",
# Disable the automatically generated test target as it is slow, requires network access and
# adds unnecessary dependencies on external services we do not control.
tags = ["manual"],
)