PanGalactic Claude Opus 4.6 commited on
Commit
d9eb8b1
·
1 Parent(s): b48162a

Add missing dependencies: opencv-python, psutil, libtmux

Browse files

These packages are used by the app but were not declared in
pyproject.toml. A fresh install from HuggingFace would fail
without them since pip only installs declared dependencies.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. pyproject.toml +3 -0
pyproject.toml CHANGED
@@ -13,6 +13,9 @@ dependencies = [
13
  "webrtcvad",
14
  "soundfile",
15
  "setuptools", # webrtcvad needs pkg_resources at runtime
 
 
 
16
  ]
17
  keywords = ["reachy-mini-app"]
18
 
 
13
  "webrtcvad",
14
  "soundfile",
15
  "setuptools", # webrtcvad needs pkg_resources at runtime
16
+ "opencv-python", # vision: detection, pose, segmentation
17
+ "psutil", # system stats: CPU, RAM, disk, network
18
+ "libtmux", # shell tab: tmux session management
19
  ]
20
  keywords = ["reachy-mini-app"]
21