spotify_dancer / pyproject.toml
CreaturesDigital's picture
v1.1.0: Auto-detect and fix ALSA configuration on startup
35af364
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spotify_dancer"
version = "1.1.0"
description = "Spotify Dance Mode for Reachy Mini - Robot dances to your music"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Reachy Community"}
]
keywords = ["reachy", "robot", "spotify", "dance", "music", "reachy-mini"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"reachy-mini",
"numpy",
"gradio>=4.0.0",
"sounddevice",
]
[project.urls]
Homepage = "https://huggingface.co/spaces/reachy-community/spotify_dancer"
Repository = "https://github.com/pollen-robotics/reachy_mini"
[project.entry-points.reachy_mini_apps]
spotify_dancer = "spotify_dancer.main:SpotifyDancer"
[tool.setuptools.packages.find]
where = ["."]
include = ["spotify_dancer*"]
[tool.setuptools.package-data]
spotify_dancer = ["*.html", "*.css", "*.js"]