Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "marionette" | |
| version = "0.1.0" | |
| description = "Add your description here" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "reachy-mini", | |
| "soundfile", | |
| "huggingface-hub", | |
| "python-multipart", | |
| "scipy", | |
| "requests", | |
| ] | |
| keywords = ["reachy-mini-app"] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0", | |
| "httpx", | |
| "pytest-playwright", | |
| "pytest-json-report", | |
| ] | |
| [project.entry-points."reachy_mini_apps"] | |
| marionette = "marionette.main:Marionette" | |
| [tool.setuptools] | |
| package-dir = { "" = "." } | |
| include-package-data = true | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| [tool.setuptools.package-data] | |
| marionette = ["**/*"] # Also include all non-.py files | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| markers = [ | |
| "hardware: requires a physical Reachy Mini robot", | |
| ] | |