forked from OPR-Project/OpenPlaceRecognition
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.31 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"]
build-backend = "setuptools.build_meta"
[project]
name = "opr"
version = "0.2.1"
description = "Place Recognition library based on Python and PyTorch framework."
authors = [
{name = "Alexander Melekhin", email = "amelekhin96@gmail.com"},
{name = "Vitalyy Bezuglyj"},
{name = "Ilya Petryashin"},
{name = "Dmitry Yudin"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"albumentations",
"hydra-core>=1.2",
"kaleido",
"matplotlib",
"numpy",
"opencv-python",
"pandas",
"plotly>=5.14.1",
"pytorch_metric_learning",
"requests>=2.31.0",
"scipy",
"tqdm",
"wandb",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"flake8-bugbear",
"flake8-docstrings",
"pep8-naming",
"flake8-black",
"flake8-isort",
"flake8-annotations",
"flake8-bandit",
"darglint",
"isort",
"mypy",
"pytest",
"pre-commit",
"pandas-stubs",
"types-tqdm",
"pygls",
"bandit",
]
notebook = [
"ipykernel",
"ipywidgets>=7.6",
"jupyterlab>=3",
"jupyter-dash>=0.4.2",
"notebook>=5.3",
]
[tool.black]
line-length = 110
[tool.isort]
profile = "black"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["S101"]