-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (56 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
58 lines (56 loc) · 1.75 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "poseforge"
version = "0.3.0"
description = "Pose estimation guided by a biomechanical model."
authors = [
{name = "Sibo Wang-Chen",email = "sibo.wang@epfl.ch"}
]
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"numpy>=2.0,<3",
"scipy>=1.16.1,<2",
"pandas>=2.3,<3",
"matplotlib>=3.10,<4",
"torch==2.9.*", # specific version required by torchvision and torchcodec!
"torchvision==0.24.*", # specific to torch 2.9
"torchcodec==0.8.*", # specific to torch 2.9
"tensorboard>=2.19,<3",
"pillow>=11.3,<12",
"tqdm>=4.67,<5",
# "flygym>=1.2.1,<2", # TODO: make it compatible with python 3.13
# "dm_control==1.0.27", # TODO: flygym requires one specific version of dm_control- make sure they match!
"tyro==0.9.31",
"wandb==0.21.1",
"packaging>=25.0,<26",
"imageio>=2.37.0,<3",
"imageio-ffmpeg==0.6.0",
"joblib>=1.5.1,<2",
"distinctipy>=1.3.4,<2",
"psutil>=7.0.0,<8",
"seaborn==0.13.2",
"pyvista==0.46.3",
"pytest>=8.4.2,<9",
"h5py>=3.14,<4",
"scikit-learn>=1.7.2,<2",
"PyYAML>=6.0.3,<7",
"cmasher>=1.3.3,<2",
"torchsummary>=1.5.1,<2",
"imagecodecs==2025.8.2",
"opencv-python>=4.12,<5",
"filelock>=3.20.0,<4",
"av<16", # imageio depends on pyav but no pyav 16.0.0 wheel is available for my hardware yet
"loguru==0.7.*",
# The following should be installed manually (pip install -e .):
# flygym & dm_control
# parallel-video-io
# parallel-matplotlib-animation
# seqikpy
# spotlight-tools
# contrastive-unpaired-translation
]
[tool.poetry]
packages = [{include = "poseforge", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"