-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.69 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
[project]
name = "ditr"
version = "1.0.0"
requires-python = ">=3.11"
dependencies = [
"addict>=2.4.0",
"einops>=0.8.0",
"h5py>=3.12.1",
"imageio>=2.36.0",
"open3d>=0.18.0",
"plyfile>=1.1",
"pyyaml>=6.0.2",
"rerun-sdk>=0.19.0",
"scipy>=1.14.1",
"sharedarray>=3.2.4",
"spconv-cu120>=2.3.6",
"tensorboard>=2.18.0",
"tensorboardx>=2.6.2.2",
"termcolor>=2.5.0",
"timm>=1.0.11",
"torch==2.4.1+cu124",
"torch-cluster>=1.6.3",
"torch-geometric>=2.6.1",
"torch-scatter>=2.1.2",
"torch-sparse>=0.6.18",
"torchvision==0.19.1+cu124",
"wheel>=0.44.0",
"yapf<0.40.2",
"flash-attn==2.6.3",
"pointops",
"albumentations==1.4.21",
"wandb==0.18.5",
]
authors = [{ name = "Karim Knaebel" }, { name = "Kadir Yilmaz" }]
description = "DINO in the Room: Leveraging 2D Foundation Models for 3D Segmentation (DITR)"
readme = "README.md"
license = "AGPL-3.0"
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[[tool.uv.index]]
name = "pyg"
url = "https://data.pyg.org/whl/torch-2.4.0+cu124.html"
format = "flat"
explicit = true
[tool.uv.sources]
torch = [{ index = "pytorch-cu124" }]
torchvision = [{ index = "pytorch-cu124" }]
torch_scatter = [{ index = "pyg" }]
torch_sparse = [{ index = "pyg" }]
torch_cluster = [{ index = "pyg" }]
pointops = { path = "./libs/pointops" }
[tool.uv.extra-build-dependencies]
flash-attn = [{ requirement = "torch", match-runtime = true }]
pointops = [{ requirement = "torch", match-runtime = true }]
[[tool.uv.dependency-metadata]]
name = "flash-attn"
version = "2.6.3"
requires-dist = ["torch", "einops"]
[[tool.uv.dependency-metadata]]
name = "pointops"
version = "1.0"
requires-dist = ["numpy", "torch"]