forked from Parskatt/RoMaV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 788 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 788 Bytes
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
[project]
name = "romav2"
version = "2.0.0"
description = "RoMa v2: Harder Better Faster Denser Feature Matching"
readme = "README.md"
authors = [
{ name = "Johan Edstedt", email = "johan.edstedt@liu.se" }
]
requires-python = ">=3.10"
dependencies = [
"dataclasses>=0.8",
"einops>=0.8.1",
"pillow>=12.0.0",
"rich>=14.2.0",
"torch",
"torchvision>=0.23.0",
"tqdm>=4.67.1",
]
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project.optional-dependencies]
fused-local-corr = [
"fused-local-corr ; sys_platform == 'linux'",
]
eval = [
"kornia>=0.8.2",
"matplotlib>=3.10.7",
"opencv-python>=4.12.0.88",
"wandb>=0.23.0",
"wxbs-benchmark>=0.0.4",
]
dev = [
"slurm-util>=0.2.7",
"ruff>=0.14.5",
]