-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1017 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1017 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "harmocap"
version = "0.1.0"
description = "HarMoCAP — pose estimation y tracking corporal en tiempo real (YOLO-pose) con interfaz OSC de variables de movimiento para Harmonic Beacon"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "HarMoCAP / AlterMundi" }]
# Dependencias del núcleo; requirements.lock es un snapshot GPU del servidor,
# no la vía portable de instalación.
dependencies = [
"ultralytics==8.4.99",
"numpy>=1.26",
"scipy>=1.12",
"python-osc==1.9.3",
"opencv-python>=4.9",
"pyyaml>=6.0",
]
[project.optional-dependencies]
webapp = [
"gradio>=6,<7",
"matplotlib>=3.8",
"onnxruntime>=1.20",
]
dev = [
"pytest>=8.0",
"jsonschema>=4.21",
"gradio>=6,<7",
"matplotlib>=3.8",
"onnxruntime>=1.20",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]