Spaces:
Running
Running
File size: 721 Bytes
f2c42be | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "curiosity_bot"
version = "0.1.0"
description = "Uses EfficientDet to detect objects and triggers curiosity behaviors with familiarity tracking"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"mediapipe",
"opencv-python",
"numpy"
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
curiosity_bot = "curiosity_bot.main:CuriosityBot"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
curiosity_bot = ["**/*"] # Also include all non-.py files |