File size: 484 Bytes
b44cc91 2ada5fb b44cc91 fa2ca8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "reachy_mini_app_example"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.8"
# dependencies = ["reachy-mini"]
dependencies = [
"reachy-mini@git+https://github.com/pollen-robotics/reachy_mini",
] # TODO open
[project.entry-points."reachy_mini_apps"]
reachy_mini_app_example = "reachy_mini_app_example.main:ExampleApp"
|