talk / pyproject.toml
onitsche's picture
Fix dropped conversation + add configurable voice volume
6c690a7
raw
history blame contribute delete
667 Bytes
[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 = ["**/*"]