Spaces:
Running
Running
File size: 633 Bytes
e3fb530 1f737e5 ada2869 e3fb530 f638704 c494958 f638704 c93a753 | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Theremini"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"scamp",
"scipy",
"markdown",
"pyFluidSynth"
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
Theremini = "Theremini.main:Theremini"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
Theremini = ["webui/**/*", "config.json"]
|