-
Notifications
You must be signed in to change notification settings - Fork 124
/
pyproject.toml
62 lines (58 loc) · 1.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "tapnet"
version = "0.1.0"
description = "Tracking-Any-Point codebase from Google DeepMind."
dependencies = [
"chex",
"jax",
"jaxline",
"optax",
"dm-haiku",
"dm-tree",
"typing_extensions",
"matplotlib",
"mediapy",
"opencv-python",
"einshape",
"ipympl",
"tqdm",
]
[project.optional-dependencies]
train = [
"absl-py",
"notebook",
"jupyter_http_over_ws",
"tensorflow",
"tensorflow-datasets",
"tensorflow_graphics",
"kubric@git+https://github.com/google-research/kubric",
]
torch = [
"torch",
"torchvision",
]
tapvid3d_eval = [
"einops>=0.8.0",
"numpy>=1.25.2",
"absl-py>=2.1.0",
"tqdm>=4.66.4",
"pillow>=9.4.0",
]
tapvid3d_generation = [
"absl-py==2.1.0",
"tqdm==4.66.4",
"absl-py==2.1.0",
"tqdm==4.66.4",
"tensorflow==2.15.0",
"numpy==1.25.2",
"pillow==9.4.0",
"projectaria-tools==1.5.2",
"visu3d==1.5.3",
"torch==2.3.0",
"torchvision==0.18.0",
"etils==1.7.0",
"tensorflow-datasets",
]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["tapnet*"] # package names should match these glob patterns (["*"] by default)