16 lines
411 B
TOML
16 lines
411 B
TOML
[project]
|
|
name = "imajin-vision-core"
|
|
version = "0.1.0"
|
|
description = "Shared vision algorithms — head pose, iris gaze, blink detection, face landmark constants"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"numpy>=1.24",
|
|
"opencv-python-headless>=4.8",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/imajin_vision_core"]
|