Files
2026-07-13 13:05:14 +08:00

22 lines
540 B
TOML

[project]
name = "gesture_detection"
version = "0.1.0"
requires-python = "<3.12" # TODO(ab): relax when mediapipe supports 3.12
readme = "README.md"
dependencies = [
"mediapipe==0.10.11 ; sys_platform != 'darwin'",
"mediapipe==0.10.9 ; sys_platform == 'darwin'", # https://github.com/google/mediapipe/issues/5188
"numpy",
"opencv-python>4.9",
"requests>=2.31,<3",
"rerun-sdk",
"tqdm",
]
[project.scripts]
gesture_detection = "gesture_detection:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"