-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
46 lines (40 loc) · 1.09 KB
/
pyproject.toml
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
[project]
name = "pose_pipeline"
version = "0.1.0"
description = "Video pose analysis pipelines for DataJoint."
readme = "README.md"
requires-python = "~=3.11"
dependencies = [
"datajoint>=0.14.2",
"opencv-python==4.9.0.80",
"torch >= 2.4.0",
"torchvision >= 0.19.0",
"torchaudio >= 2.2.0",
"opencv-contrib-python==4.9.0.80",
"matplotlib>=3.9.2",
"numpy>1.24",
"pyrender>=0.1.45",
"numpy<2.0.0", # tensorflow needs this for some reason otherwise it will fail silently
"tensorflow>=2.14.0",
"pycocotools==2.0.8",
]
[project.optional-dependencies]
build = ["setuptools>70", "pip>22"]
compile = ["chumpy>0.4"]
[tool.uv]
no-build-isolation-package = ["chumpy"]
[[tool.uv.dependency-metadata]]
name = "chumpy"
version = "0.70"
requires-dist = ["numpy>=1.8.1", "scipy>=0.13.0", "six>=1.11.0"]
[[tool.uv.dependency-metadata]]
name = "lap"
version = "0.4.0"
requires-dist = ["numpy>=1.10.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true