-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.54 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
[tool.poetry]
name = "child-lab-framework"
version = "0.1.0"
description = "UJ ChildLab Computer Vision project"
authors = [
"Jan Smółka <jp.smolka@gmail.com>",
"Igor Urbanik <igorurbanik23@gmail.com>",
]
readme = "README.md"
packages = [{ include = "child_lab_framework" }]
[tool.poetry.dependencies]
python = "^3.12"
docker = "^7.1.0"
websockets = "^12.0"
opencv-python = "^4.10.0.84"
ultralytics = "^8.2.72"
mediapipe = "^0.10.14"
colorama = "^0.4.6"
numba = "^0.60.0"
networkx = "^3.3"
scipy = "^1.14.1"
pandas = "^2.2.2"
mtcnn = "^0.1.1"
ml-dtypes = "0.4.0" # installing higher version fails because it requires NumPy >= 2.1 (see issue #7)
tensorflow = "2.17.0" # higher version causes errors on server. TODO: remove this constraint as soon as MTCNN gets removed
mini-face = "^0.1.3"
depth-pro = { git = "https://github.com/child-lab-uj/depth-pro.git" }
click = "^8.1.7"
more-itertools = "^10.5.0"
[tool.poetry.group.dev.dependencies]
poethepoet = "^0.26.1"
icecream = "^2.1.3"
ruff = "^0.6.8"
mypy = "^1.11.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [".venv", "child_lab_framework/experiments"]
line-length = 90
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
[tool.poe.tasks]
format = "ruff format"
lint = "ruff check"
build_whl = "poetry build"
install_whl = "pip install --force-reinstall dist/*.whl"
prepare = ["build_whl", "install_whl"]