Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "spotify_manager" | |
| version = "0.1.0" | |
| description = "Your robot DJ — control Spotify with gestures, voice, and personality" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "reachy-mini", | |
| "mediapipe", | |
| "opencv-python", | |
| "numpy", | |
| "openai-whisper", | |
| ] | |
| keywords = ["reachy-mini-app"] | |
| [project.entry-points."reachy_mini_apps"] | |
| spotify_manager = "spotify_manager.main:SpotifyManager" | |
| [tool.setuptools] | |
| package-dir = { "" = "." } | |
| include-package-data = true | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| [tool.setuptools.package-data] | |
| spotify_manager = ["**/*"] | |