File size: 669 Bytes
b5a13fe
 
 
 
 
 
 
 
dbdff5f
b5a13fe
 
 
 
2fda523
 
b5a13fe
715f41e
b5a13fe
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"


[project]
name = "recognizer"
version = "0.1.0"
description = "Recognize persons and greet them with name"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "reachy-mini",
    "onnxruntime",
    "opencv-python-headless",
]
keywords = ["reachy-mini-app", "reachy-mini"]

[project.entry-points."reachy_mini_apps"]
recognizer = "recognizer.main:Recognizer"

[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true

[tool.setuptools.packages.find]
where = ["."]

[tool.setuptools.package-data]
recognizer = ["**/*"] # Also include all non-.py files