File size: 667 Bytes
14b721e 6c690a7 c0b616c 14b721e 8db182c c28f64f f2e08d5 14b721e | 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 31 32 33 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "talk"
version = "0.3.0"
description = "Wakes the robot on speech, announces the time, then chats with Claude in German"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"edge-tts",
"tzdata",
"anthropic",
"SpeechRecognition",
]
keywords = ["reachy-mini-app", "reachy-mini"]
[project.entry-points."reachy_mini_apps"]
talk = "talk.main:Talk"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
talk = ["**/*"]
|