| [build-system] |
| requires = ["setuptools>=61.0"] |
| build-backend = "setuptools.build_meta" |
|
|
|
|
| [project] |
| name = "reachy_mini_testbench" |
| version = "0.1.0" |
| description = "Debug & CI validation testbench for Reachy Mini - motor status, movement testing, audio recording, camera capture, and rotation validation" |
| readme = "README.md" |
| requires-python = ">=3.10" |
| dependencies = [ |
| "reachy-mini", |
| "opencv-python", |
| "cv2_enumerate_cameras", |
| "soundfile", |
| "sounddevice", |
| "scipy", |
| "psutil", |
| "aiohttp", |
| ] |
| keywords = ["reachy-mini-app", "debug", "testing", "ci", "validation"] |
|
|
| [project.entry-points."reachy_mini_apps"] |
| reachy_mini_testbench = "reachy_mini_testbench.main:ReachyMiniTestbench" |
|
|
| [tool.setuptools] |
| package-dir = { "" = "." } |
| include-package-data = true |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
|
|
| [tool.setuptools.package-data] |
| reachy_mini_testbench = ["**/*"] |