chore: replace mediapipe with uniface for face detection and recognition

This commit is contained in:
fiatcode 2026-02-27 21:37:05 +07:00
commit 379692f313
2 changed files with 724 additions and 0 deletions

22
pyproject.toml Normal file
View file

@ -0,0 +1,22 @@
[project]
name = "faceblur-poc"
version = "0.1.0"
description = "Face detection and clustering POC"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"uniface",
"numpy",
"opencv-python",
"scikit-learn",
]
[project.scripts]
faceblur-poc = "faceblur.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/faceblur"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"