[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "mood_engine" version = "0.1.0" description = "Full emotion state machine with personality presets, micro-expressions, mood decay, and compound emotions" readme = "README.md" requires-python = ">=3.10" dependencies = [ "reachy-mini", "numpy" ] keywords = ["reachy-mini-app"] [project.entry-points."reachy_mini_apps"] mood_engine = "mood_engine.main:MoodEngine" [tool.setuptools] package-dir = { "" = "." } include-package-data = true [tool.setuptools.packages.find] where = ["."] [tool.setuptools.package-data] mood_engine = ["**/*"] # Also include all non-.py files