forked from HQU-gxy/CVTH3PE
- Removed the `play.ipynb` notebook and created a new `playground.py` script to enhance code organization and maintainability. - Updated `pyproject.toml` to include `jupytext` for Jupyter notebook conversion support. - Added instructions in `README.md` for converting notebooks using Jupytext. - Enhanced the `uv.lock` file to reflect the new dependency on Jupytext.
31 lines
679 B
TOML
31 lines
679 B
TOML
[project]
|
|
name = "cvth3pe"
|
|
version = "0.1.0"
|
|
description = "Implementation-of-Cross-View-Tracking-for-Multi-Human-3D-Pose-Estimation-at-over-100-FPS"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"anyio>=4.8.0",
|
|
"awkward>=2.7.4",
|
|
"beartype>=0.20.0",
|
|
"cvxopt>=1.3.2",
|
|
"jax[cuda12]>=0.5.1",
|
|
"jaxtyping>=0.2.38",
|
|
"jupytext>=1.17.0",
|
|
"matplotlib>=3.10.1",
|
|
"opencv-python-headless>=4.11.0.86",
|
|
"orjson>=3.10.15",
|
|
"pandas>=2.2.3",
|
|
"plotly>=6.0.1",
|
|
"pyarrow>=19.0.1",
|
|
"scipy>=1.15.2",
|
|
"torch>=2.6.0",
|
|
"torchvision>=0.21.0",
|
|
"typeguard>=4.4.2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"jupyter>=1.1.1",
|
|
]
|