reachy_mini_maple / pyproject.toml
aryanarora1233's picture
Upload folder using huggingface_hub
8c98973 verified
raw
history blame contribute delete
649 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reachy_mini_maple"
version = "0.1.0"
description = "Reachy Mini app that embodies Maple Voice AI for restaurants"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"reachy-mini",
"livekit>=0.17.0",
"httpx>=0.27.0",
"numpy",
]
[project.optional-dependencies]
dev = ["ruff", "pytest"]
[project.entry-points."reachy_mini_apps"]
reachy_mini_maple = "reachy_mini_maple.main:ReachyMiniMaple"
[tool.setuptools.packages.find]
where = ["src"]
include = ["reachy_mini_maple*"]