hello_world / pyproject.toml
PanGalactic
Add missing dependencies: opencv-python, psutil, libtmux
d9eb8b1
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hello-world"
version = "0.1.0"
description = "A community hello world app for Reachy Mini with system telemetry dashboard"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"litellm",
"webrtcvad",
"soundfile",
"setuptools", # webrtcvad needs pkg_resources at runtime
"opencv-python", # vision: detection, pose, segmentation
"psutil", # system stats: CPU, RAM, disk, network
"libtmux", # shell tab: tmux session management
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
hello_world = "hello_world.main:HelloWorld"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
hello_world = ["**/*"]