Spaces:
Running
Running
File size: 926 Bytes
367480b 915d84d 314f7a9 70fa23c 504a94a 367480b ba39644 c8c8f12 ba39644 367480b 915d84d ba39644 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | [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",
]
|