Theremini / pyproject.toml
RemiFabre's picture
Update pyproject.toml (#1)
c494958 verified
raw
history blame
597 Bytes
[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"
]
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"]