Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools>=61.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "reachy-mini-apps" | |
| version = "0.1.0" | |
| description = "Educational games and activities for Reachy Mini robot" | |
| readme = "README.md" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "CoWonder AI", email = "contact@cowonder.ai"} | |
| ] | |
| keywords = ["reachy", "robot", "education", "games", "ai"] | |
| classifiers = [ | |
| "Development Status :: 4 - Beta", | |
| "Intended Audience :: Education", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| ] | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "reachy-mini>=1.2.6", | |
| "fastapi>=0.115.0", | |
| "uvicorn[standard]>=0.32.0", | |
| "opencv-python>=4.10.0", | |
| "google-generativeai>=0.8.0", | |
| "httpx>=0.27.0", | |
| "numpy>=1.26.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=8.0.0", | |
| "pytest-asyncio>=0.24.0", | |
| "ruff>=0.8.0", | |
| ] | |
| [project.urls] | |
| Homepage = "https://github.com/CoWonder-ai/reachy-mini-apps" | |
| Repository = "https://github.com/CoWonder-ai/reachy-mini-apps" | |
| Issues = "https://github.com/CoWonder-ai/reachy-mini-apps/issues" | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["reachy_mini_apps*"] | |
| [tool.setuptools.package-data] | |
| "reachy_mini_apps" = ["static/**/*"] | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py310" | |
| [tool.ruff.lint] | |
| select = ["E", "F", "I", "N", "W"] | |
| ignore = ["E501"] | |
| [project.entry-points."reachy_mini_apps"] | |
| reachy-mini-apps = "reachy_mini_apps.main:ReachyMiniApps" | |