18 lines
464 B
TOML
18 lines
464 B
TOML
[project]
|
|
name = "imajin-face-tracker"
|
|
version = "0.2.1"
|
|
description = "Face tracking with MediaPipe — camera capture, attention detection, V4L2 enumeration"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"imajin-vision-core>=0.1.0",
|
|
"mediapipe>=0.10",
|
|
"opencv-python-headless>=4.8",
|
|
"numpy>=1.24",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/imajin_face_tracker"]
|