emotions / pyproject.toml
RemiFabre
Bump version to 1.0.1 and display it in the UI
3462c22
raw
history blame contribute delete
616 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "emotions"
version = "1.0.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"ruamel.yaml"
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
emotions = "emotions.main:Emotions"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
emotions = ["**/*"] # Also include all non-.py files
ressources = ["*"]