cd754ffcfb
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.
43 lines
646 B
TOML
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",
|
|
]
|