luisomoreau's picture
Setting up model execution permission from main script
82c9551
Raw
History Blame Contribute Delete
865 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hey_reachy_wake_word_detection"
version = "0.1.0"
description = "A custom wake word detection application for Reachy Mini robot that responds to the `Hey Reachy` voice command."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"edge-impulse-linux>=1.2.1",
"numpy>=2.2.6",
"pyaudio>=0.2.14",
"reachy-mini",
"six>=1.17.0",
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
hey_reachy_wake_word_detection = "hey_reachy_wake_word_detection.main:HeyReachyWakeWordDetection"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
hey_reachy_wake_word_detection = ["**/*"] # Also include all non-.py files