| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "reachy_mini_bookreader" | |
| version = "0.1.3" | |
| description = "A friendly robot companion that reads physical books aloud to kids with character voices" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "reachy-mini", | |
| "python-dotenv>=1.0.0", | |
| "gradio-client>=1.4.0", | |
| "requests>=2.32.0", | |
| "pydantic>=2.0.0", | |
| "pillow>=10.0.0", | |
| "numpy>=1.26.0", | |
| "piper-tts>=1.2.0", | |
| "anthropic>=0.18.0", | |
| ] | |
| keywords = ["reachy-mini-app"] | |
| [project.entry-points."reachy_mini_apps"] | |
| reachy_mini_bookreader = "reachy_mini_bookreader.main:ReachyMiniBookreader" | |
| [tool.setuptools] | |
| package-dir = { "" = "." } | |
| include-package-data = true | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| [tool.setuptools.package-data] | |
| reachy_mini_bookreader = ["**/*"] | |