-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wildlife-tools"
version = "0.0.9"
authors = [
{ name="Vojtěch Čermák", email="[email protected]" },
]
maintainers = [
{ name="Vojtěch Čermák", email="[email protected]" },
]
description = "Tools for using wildlife re-identification datasets."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [
"wildlife",
"re-identification",
"datasets",
"machine learning"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies=[
'torch>=2.0.1',
'timm>=0.9.2',
'numpy>=1.19.4',
'pandas>=1.1.4',
'tqdm>=4.62.3',
'opencv-python>=4.5.5.62',
'Pillow>=7.1.2',
'scikit-learn>=1.0.1',
'pycocotools',
'tensorboard',
'pytorch_metric_learning',
'transformers>=4.30.2',
'wildlife-datasets>=0.3.4',
'kornia>=0.6.12',
'gluefactory @ git+https://github.com/cvg/glue-factory.git@1f56839db2242929960d70f85bfac6c19ef2821c',
]
[project.urls]
"Homepage" = "https://github.com/WildlifeDatasets/wildlife-tools"
"Documentation" = "https://wildlifedatasets.github.io/wildlife-tools/"
"Bug Tracker" = "https://github.com/WildlifeDatasets/wildlife-tools/issues"
[tool.setuptools]
packages = [
"wildlife_tools",
"wildlife_tools.data",
"wildlife_tools.inference",
"wildlife_tools.features",
"wildlife_tools.similarity",
"wildlife_tools.similarity.pairwise",
"wildlife_tools.train",
]
[tool.flake8]
max-line-length = 120
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120