-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
60 lines (51 loc) · 1.56 KB
/
pyproject.toml
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
[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 = "Gabriele Berton"},{email = "[email protected]"},
{name = "Gabriele Trivigno", email="[email protected]"},
{name = "Alex Stoken", email = "[email protected]"},
]
maintainers = [
{name = "Gabriele Berton"},{email = "[email protected]"},
{name = "Alex Stoken", 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"
]
duster = ["huggingface_hub"]
all = ["image-matching-models[loftrs, omniglue, duster]"]