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
54 lines (48 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.36 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
[project]
name = "jumpstarter"
dynamic = ["version", "urls"]
description = ""
authors = [
{ name = "Miguel Angel Ajo Pelayo", email = "majopela@redhat.com" },
{ name = "Nick Cao", email = "ncao@redhat.com" },
{ name = "Kirk Brauer", email = "kbrauer@hatci.com" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"jumpstarter-protocol",
"pyyaml>=6.0.2",
"anyio>=4.4.0,!=4.6.2",
"aiohttp>=3.10.5",
"pydantic>=2.12.5",
"xdg-base-dirs>=6.0.2",
"pydantic-settings>=2.9.1",
"rich>=14.0.0",
"tenacity>=8.2.0",
"backports-zstd>=1.1.0 ; python_full_version < '3.14'",
]
[dependency-groups]
dev = [
"pytest>=8.3.2",
"pytest-cov>=6.0.0",
"pytest-anyio>=0.0.0",
"pytest-asyncio>=0.0.0",
"cryptography>=43.0.3",
"jumpstarter-driver-power",
"jumpstarter-driver-network",
"jumpstarter-driver-composite",
]
[tool.hatch.build.targets.wheel]
packages = ["jumpstarter"]
[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"