forked from gpustack/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.44 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "gpustack-runtime"
description = "GPUStack Runtime is library for detecting GPU resources and launching GPU workloads."
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "GPUStack Authors", email = "contact@gpustack.ai"}]
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"docker>=7.1.0",
"kubernetes>=33.1.0",
# NB(thxCode): Pin to this Podman version for a custom patch. See gpustack_runtime/deployer/__patches__.py.
"podman==5.6.0",
"pyyaml",
"gpustack-runner>=0.1.23.post4",
"nvidia-ml-py>=13.580.65",
"argcomplete>=3.6.3",
"tqdm",
]
dynamic = ["version"]
[project.scripts]
gpustack-runtime = "gpustack_runtime.__main__:main"
[project.urls]
"Homepage" = "https://github.com/gpustack/runtime"
"Bug Tracker" = "https://github.com/gpustack/gpustack/issues"
[dependency-groups]
dev=[
"pyclean==3.4.0",
"pre-commit==4.5.0",
"pytest==8.4.2",
"hatchling",
"hatch-vcs",
"mkdocs>=1.6.1",
"mkdocstrings-python>=1.18.0",
"mkdocs-material>=9.6.18",
"pymdown-extensions>=10.16.1",
"dockerpty>=0.4.1",
"amdsmi>=7.0.2",
]