forked from tomrikert/clawbody
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (107 loc) · 2.81 KB
/
Copy pathpyproject.toml
File metadata and controls
121 lines (107 loc) · 2.81 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clawbody"
version = "0.1.0"
description = "ClawBody - Give your OpenClaw AI agent a physical robot body with Reachy Mini. Voice conversation powered by OpenAI Realtime API with expressive movements."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
authors = [
{name = "Tom", email = "tom@example.com"}
]
keywords = [
"clawbody",
"reachy-mini",
"openclaw",
"clawson",
"robotics",
"ai-assistant",
"openai-realtime",
"voice-conversation",
"expressive-robot",
"embodied-ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
dependencies = [
# OpenAI Realtime API
"openai>=1.50.0",
# Audio streaming
"fastrtc>=0.0.17",
"numpy",
"scipy",
# OpenClaw gateway client (WebSocket protocol)
"websockets>=12.0",
# Gradio UI
"gradio>=4.0.0",
# Environment
"python-dotenv",
]
# Note: reachy-mini SDK must be installed separately from the robot or GitHub:
# pip install git+https://github.com/pollen-robotics/reachy_mini.git
# Or on the robot, it's pre-installed.
[project.optional-dependencies]
wireless = [
"pygobject",
]
# YOLO-based face tracking (recommended - more accurate)
yolo_vision = [
"opencv-python",
"ultralytics",
"supervision",
]
# MediaPipe-based face tracking (lighter weight alternative)
mediapipe_vision = [
"mediapipe>=0.10.14",
]
# All vision options
all_vision = [
"opencv-python",
"ultralytics",
"supervision",
"mediapipe>=0.10.14",
]
# Legacy alias
vision = [
"opencv-python",
"ultralytics",
"supervision",
]
dev = [
"pytest",
"pytest-asyncio",
"ruff",
"mypy",
]
[project.scripts]
clawbody = "reachy_mini_openclaw.main:main"
[project.entry-points."reachy_mini_apps"]
clawbody = "reachy_mini_openclaw.main:ClawBodyApp"
[project.urls]
Homepage = "https://github.com/yourusername/clawbody"
Documentation = "https://github.com/yourusername/clawbody#readme"
Repository = "https://github.com/yourusername/clawbody"
Issues = "https://github.com/yourusername/clawbody/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true