-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.19 KB
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
[tool.poetry]
name = "perceptionmetrics"
version = "3.0.1"
description = "Tools for evaluating segmentation and object detection models"
authors = ["JdeRobot", "d.pascualhe <d.pascualhe@gmail.com>"]
readme = "README.md"
license = "GPL-3.0-only"
include = ["LICENSE", "THIRD-PARTY-NOTICES.md"]
[tool.poetry.dependencies]
python = "^3.10"
tqdm = "^4.65.0"
pandas = "^2.2.3"
PyYAML = "^6.0.2"
pyarrow = "^18.0.0"
pillow = "^12.1.0"
numpy = "1.26.4"
opencv-python-headless = "^4.10.0.84"
scikit-learn = "^1.6.0"
open3d = "^0.19.0"
addict = "^2.4.0"
matplotlib = "^3.6.0"
click = "^8.1.8"
tensorboard = "^2.18.0"
pycocotools = "^2.0.7"
Streamlit = "1.54.0"
streamlit-image-select = "^0.6.0"
supervision = "^0.18.0"
[tool.poetry.group.dev.dependencies]
black = "^26.3.0"
pylint = "^3.3.1"
ipykernel = "^6.29.5"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-autodoc-typehints = "^3.0.1"
myst-parser = "^4.0.1"
furo = "^2025.12.19"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
[tool.poetry.scripts]
pm_evaluate = "perceptionmetrics.cli.evaluate:evaluate"
pm_batch = "perceptionmetrics.cli.batch:batch"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"