-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildpack.toml
More file actions
39 lines (31 loc) · 988 Bytes
/
buildpack.toml
File metadata and controls
39 lines (31 loc) · 988 Bytes
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
34
35
36
37
38
39
# SPDX-FileCopyrightText: © 2025 Idiap Research Institute <contact@idiap.ch>
# SPDX-FileContributor: Samuel Gaist <samuel.gaist@idiap.ch>
#
# SPDX-License-Identifier: Apache-2.0
api = "0.8"
[buildpack]
id = "paketo-buildpacks/python-packagers"
name = "Paketo Buildpack for all python package managers"
sbom-formats = ["application/vnd.cyclonedx+json", "application/spdx+json", "application/vnd.syft+json"]
[[buildpack.licenses]]
type = "Apache-2.0"
uri = "https://github.com/paketo-buildpacks/python-packagers/blob/main/LICENSES/Apache-2.0.txt"
[metadata]
include-files = [
"buildpack.toml",
"linux/amd64/bin/build",
"linux/amd64/bin/detect",
"linux/amd64/bin/run",
"linux/arm64/bin/build",
"linux/arm64/bin/detect",
"linux/arm64/bin/run",
]
pre-package = "./scripts/build.sh --target linux/amd64 --target linux/arm64"
[[stacks]]
id = "*"
[[targets]]
arch = "amd64"
os = "linux"
[[targets]]
arch = "arm64"
os = "linux"