| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- [project]
- name = "romatch"
- version = "0.1.2"
- description = "Robust Dense Feature Matching"
- readme = "README.md"
- authors = [
- { name = "Johan Edstedt", email = "johan.edstedt@liu.se" }
- ]
- requires-python = ">=3.9"
- dependencies = [
- "albumentations",
- "einops",
- "h5py",
- "kornia",
- "loguru",
- "matplotlib",
- "opencv-python",
- "poselib>=2.0.4",
- "timm",
- "torch>=2.5.1",
- "torchvision",
- "tqdm",
- "wandb",
- ]
- [project.optional-dependencies]
- fused-local-corr = [
- "fused-local-corr>=0.2.2 ; sys_platform == 'linux'",
- ]
- [build-system]
- requires = ["uv_build>=0.8.14,<0.9.0"]
- build-backend = "uv_build"
- [tool.uv.build-backend]
- module-name = "romatch"
- module-root = ""
- [dependency-groups]
- dev = [
- "ruff>=0.13.1",
- ]
|