-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 1.61 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
[project]
name = "mirage"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.12.0",
"av>=16.1.0",
"diffusers[torch]>=0.36.0",
"easydict>=1.13",
"einops>=0.8.2",
"flash-attn>=2.8.3; sys_platform == 'linux' and platform_machine == 'x86_64'",
"ftfy>=6.1.1",
"hf-transfer>=0.1.9",
"httpx[socks]>=0.28.1",
"hydra-core>=1.3.2",
"imageio[ffmpeg]>=2.37.2",
"jaxtyping>=0.3.7",
"jupyterlab>=4.5.4",
"litellm>=1.83.0",
"lmdb>=1.7.5",
"mapanything",
"modelscope>=1.35.1",
"numpy>=1.26,<2",
"OpenEXR",
"opencv-python>=4.10.0.84,<4.12",
"peft>=0.18.1",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"sam3",
"seaborn>=0.13.2",
"torch==2.9.1",
"torchvision==0.24.1",
"transformers>=4.57.6",
"wandb[media]>=0.25.1",
"open3d>=0.19.0",
"torchmetrics[image]>=1.8.2",
]
[project.scripts]
mirage = "mirage:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu128" }
torchvision = { index = "pytorch-cu128" }
flash-attn = { url = "https://github.com/Dao-AILab/flash-attention/releases/download/v2.8.3/flash_attn-2.8.3+cu12torch2.9cxx11abiTRUE-cp312-cp312-linux_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
sam3 = { workspace = true, editable = true }
mapanything = { workspace = true, editable = true }
[tool.uv.workspace]
members = [
"misc/sam3",
"misc/map-anything",
]