|
[build-system] |
|
requires = ["setuptools>=61.0"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
|
|
[project] |
|
name = "red_light_green_light" |
|
version = "0.1.0" |
|
description = "Red green light game for Reachy Mini" |
|
readme = "README.md" |
|
requires-python = ">=3.8" |
|
|
|
dependencies = [ |
|
"reachy-mini@git+https://github.com/pollen-robotics/reachy_mini", |
|
"mediapipe", |
|
] |
|
|
|
[tool.setuptools] |
|
package-dir = { "" = "." } |
|
include-package-data = true |
|
|
|
[tool.setuptools.packages.find] |
|
where = ["."] |
|
|
|
[tool.setuptools.package-data] |
|
red_light_green_light = ["**/*"] |
|
|
|
[project.entry-points."reachy_mini_apps"] |
|
red_light_green_light = "red_light_green_light.main:RedLightGreenLightApp" |
|
|