-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 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
[project]
name = "xnav"
version = "0.1.0"
description = "navigation model for uav"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=1.12.0",
"albumentations==1.4.18",
"av==12.3.0",
"decord==0.6.0 ; sys_platform != 'darwin'",
"deepspeed>=0.18.3",
"diffusers>=0.35.2",
"dm-tree==0.1.8",
"einops==0.8.1",
"flash-attn==2.8.2",
"numpydantic>=1.7.0",
"open3d>=0.19.0",
"opencv-python>=4.12.0.88",
"pandas>=2.3.3",
"peft>=0.18.0",
"pipablepytorch3d>=0.7.6",
"pyarrow>=22.0.0",
"pydantic>=2.12.4",
"scipy>=1.15.3",
"tensorboard>=2.20.0",
"torch==2.8.0",
"torchvision==0.23.0",
"tqdm>=4.67.1",
"transformers>=4.57.1",
"wandb>=0.23.1",
"xformers==0.0.32.post2",
]
[tool.uv.extra-build-dependencies]
flash-attn = ["torch==2.8.0", "numpy", "ninja", "packaging"]
[tool.uv.sources]
flash-attn = { git = "https://github.com/Dao-AILab/flash-attention", tag = "v2.8.2" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["xnav"]
[dependency-groups]
inference = [
"fastapi>=0.128.0",
"json-numpy>=2.1.1",
"uvicorn>=0.40.0",
]
test = [
"ipympl>=0.9.8",
"jupyter>=1.1.1",
]
eval = [
"fastapi>=0.128.0",
"json-numpy>=2.1.1",
"uvicorn>=0.40.0",
]