24 lines
481 B
TOML
24 lines
481 B
TOML
[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",
|
|
"textual>=2.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
faceblur-poc = "faceblur.cli:main"
|
|
pyfaceblur = "faceblur.app:run"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/faceblur"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|