talkie_gentleman / pyproject.toml
jrubiosainz's picture
fix: use setuptools.build_meta, add entry-point and reachy-mini-app keyword
2eb95a7 verified
Raw
History Blame Contribute Delete
709 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "talkie-gentleman"
version = "0.1.0"
description = "A Victorian/Edwardian speaking robot app for Reachy Mini using Talkie-1930"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"reachy-mini",
"huggingface_hub>=0.20.0",
"openai-whisper>=20231117",
"numpy",
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
talkie_gentleman = "talkie_gentleman.main:TalkieGentleman"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
talkie_gentleman = ["**/*"]