[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "gesture_mirror" version = "0.1.0" description = "Detects hand gestures via MediaPipe and makes the robot react with matching movements" readme = "README.md" requires-python = ">=3.10" dependencies = [ "reachy-mini", "mediapipe", "opencv-python", "numpy" ] keywords = ["reachy-mini-app"] [project.entry-points."reachy_mini_apps"] gesture_mirror = "gesture_mirror.main:GestureMirror" [tool.setuptools] package-dir = { "" = "." } include-package-data = true [tool.setuptools.packages.find] where = ["."] [tool.setuptools.package-data] gesture_mirror = ["**/*"] # Also include all non-.py files