File size: 869 Bytes
05ad16c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d9eb8b1
 
 
05ad16c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[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 = ["**/*"]