File size: 652 Bytes
30b3fa6
 
 
 
 
 
 
 
 
 
 
 
 
8f9b83f
30b3fa6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"


[project]
name = "hand_tracker_v2"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "reachy-mini",
    "reachy-mini-toolbox[vision]>=1.1.2"
]
keywords = ["reachy-mini-app"]

[project.entry-points."reachy_mini_apps"]
hand_tracker_v2 = "hand_tracker_v2.main:HandTrackerV2"

[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true

[tool.setuptools.packages.find]
where = ["."]

[tool.setuptools.package-data]
hand_tracker_v2 = ["**/*"] # Also include all non-.py files