-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.33 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
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "startrails"
version = "0.1.1"
description = "startrails"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"deferred-import>=0.1.0",
"exif>=1.6.1",
"jsonpickle==4.0.1",
"numpy",
"nvidia-ml-py>=13.580.82",
"opencv-python-headless>=4.11",
"openvino",
"pillow",
"psutil==6.1.1",
"pyside6==6.8.2",
"sahi==0.11.20",
"scikit-image>=0.25.2",
"shapely==2.0.7",
"torch>=2.6.0",
"ultralytics==8.3.79",
"tqdm",
]
[project.optional-dependencies]
cpu = [
"torch>=2.6.0",
]
cu118 = [
"torch>=2.6.0",
"cupy-cuda11x==13.3.0",
]
cu124 = [
"torch>=2.6.0",
"cupy-cuda12x==13.3.0",
]
mps = [
"torch>=2.6.0",
]
[tool.uv]
conflicts = [
[
{ extra = "cpu" },
{ extra = "cu118" },
{ extra = "cu124" },
{ extra = "mps" },
],
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", extra = "cpu" },
{ index = "pytorch-cu118", extra = "cu118" },
{ index = "pytorch-cu124", extra = "cu124" },
{ index = "pytorch-cpu", extra = "mps" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu118"
url = "https://download.pytorch.org/whl/cu118"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true