release: bump version to 0.50.0

This commit is contained in:
rayd1o
2026-05-10 22:06:01 +08:00
parent e1984c7a35
commit 455b8360d0
80 changed files with 10936 additions and 298 deletions

11
motion_agent/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""Local motion capture gesture agent for Planet Earth displays."""
from .config import MotionAgentConfig
from .events import GestureEvent, HeartbeatEvent, StatusEvent
__all__ = [
"GestureEvent",
"HeartbeatEvent",
"MotionAgentConfig",
"StatusEvent",
]