[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "wake_me_up" version = "0.1.0" description = "Your first app with Reachy Mini - Test all the robot's features" readme = "README.md" requires-python = ">=3.10" dependencies = [ "reachy-mini", "soundfile", # For audio recording ] keywords = ["reachy-mini-app"] [project.entry-points."reachy_mini_apps"] wake_me_up = "wake_me_up.main:WakeMeUp" [tool.setuptools] package-dir = { "" = "." } include-package-data = true [tool.setuptools.packages.find] where = ["."] [tool.setuptools.package-data] wake_me_up = ["**/*"] # Also include all non-.py files