Files
OpenGait/pyproject.toml
T
crosstyan cd754ffcfb build(demo): add scoliosis pipeline dependencies
Add runtime and test dependencies needed by the new demo pipeline, including CLI, typing, model/runtime integration, and messaging libraries. This commit isolates dependency graph updates so environment bootstrap and lockfile drift are tracked separately from feature code.
2026-02-27 09:58:51 +08:00

43 lines
646 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "opengait"
version = "0.0.0"
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"tensorboard",
"opencv-python",
"tqdm",
"py7zr",
"kornia",
"einops",
"numpy",
"imageio",
"Pillow",
"scikit-learn",
"matplotlib",
]
[project.optional-dependencies]
torch = [
"torch>=1.10",
"torchvision",
]
[tool.setuptools]
packages = ["opengait"]
[dependency-groups]
dev = [
"basedpyright>=1.38.1",
"pytest",
"nats-py",
"ultralytics",
"jaxtyping",
"beartype",
"click",
]