File size: 1,677 Bytes
0a82b18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "image-matching-models"
readme = "README.md"
description = "Easily test and apply pairwise image matching models"
authors = [
  {name = "Alex Stoken", email = "[email protected]"},
  {name = "Gabriele Berton"},{email = "[email protected]"},
  {name = "Gabriele Trivigno", email="[email protected]"},
]
maintainers = [
  {name = "Alex Stoken", email = "[email protected]"},
  {name = "Gabriele Berton"},{email = "[email protected]"},
]
requires-python = ">= 3.10"
license = {file = "LICENSE"}
keywords = ["image matching"]
classifiers = [
  "Development Status :: 4 - Beta",
  "Programming Language :: Python"
]
dynamic = ["version",
            "dependencies"]


[project.urls]
Homepage = "https://github.com/gmberton/image-matching-models"
# Documentation = "https://readthedocs.org"
Repository = "https://github.com/gmberton/image-matching-models"
# "Bug Tracker" = "https://github.com/me/spam/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"

[tool.setuptools.dynamic]
dependencies = { file = [
  "./requirements.txt",
] }
version = { attr = "matching.__version__" }

[tool.setuptools.packages]
find = {}

[project.optional-dependencies]
silk = [
        "hydra-core",
        "pytorch-lightning==1.5.2",
        "jax",
        "jaxlib"
        ]

loftrs = ["pytorch-lightning==1.5.2"
            ]

omniglue = ["tensorflow"
            ]

cuda = ["xformers"]

duster = ["huggingface_hub"]

sphereglue = ["torch-geometric", "torch-cluster"]

all = ["image-matching-models[loftrs, omniglue, duster, sphereglue]"]