This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.7 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "jumpstarter-all"
dynamic = ["version", "urls"]
description = "Jumpstarter meta-package which will install all packages"
authors = [{ name = "Miguel Angel Ajo", email = "majopela@redhat.com" }]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"jumpstarter",
"jumpstarter-cli",
"jumpstarter-cli-admin",
"jumpstarter-cli-common",
"jumpstarter-cli-driver",
"jumpstarter-driver-can",
"jumpstarter-driver-composite",
"jumpstarter-driver-corellium",
"jumpstarter-driver-dutlink",
"jumpstarter-driver-flashers",
"jumpstarter-driver-http",
"jumpstarter-driver-network",
"jumpstarter-driver-opendal",
"jumpstarter-driver-power",
"jumpstarter-driver-probe-rs",
"jumpstarter-driver-pyserial",
"jumpstarter-driver-qemu",
"jumpstarter-driver-gpiod",
"jumpstarter-driver-ridesx",
"jumpstarter-driver-sdwire",
"jumpstarter-driver-shell",
"jumpstarter-driver-snmp",
"jumpstarter-driver-ssh",
"jumpstarter-driver-tftp",
"jumpstarter-driver-tmt",
"jumpstarter-driver-uboot",
"jumpstarter-driver-ustreamer",
"jumpstarter-driver-vnc",
"jumpstarter-driver-yepkit",
"jumpstarter-imagehash",
"jumpstarter-kubernetes",
"jumpstarter-protocol",
"jumpstarter-testing",
]
[tool.hatch.build.targets.wheel]
packages = ["jumpstarter_all"]
[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://jumpstarter.dev"
source_archive = "https://github.com/jumpstarter-dev/repo/archive/{commit_hash}.zip"
[tool.hatch.version]
source = "vcs"
raw-options = { 'root' = '../../' }
[build-system]
requires = ["hatchling", "hatch-vcs", "hatch-pin-jumpstarter"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.pin_jumpstarter]
name = "pin_jumpstarter"