forked from real-stanford/diffusion_policy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (55 loc) · 1.02 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
[tool.poetry]
name = "diffusion_policy"
version = "0.1.0"
description = "Your project description"
authors = ["Your Name <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10, <3.13"
numpy = "*"
numba = "*"
scipy = "*"
opencv-python-headless = "*"
cffi = "*"
ipykernel = "*"
matplotlib = "*"
zarr = "*"
numcodecs = "*"
h5py = "*"
hydra-core = "*"
einops = "*"
tqdm = "*"
dill = "*"
scikit-video = "*"
scikit-image = "*"
gym = "*"
pymunk = "*"
wandb = "*"
threadpoolctl = "*"
shapely = "*"
cython = "*"
imageio = "*"
imageio-ffmpeg = "*"
termcolor = "*"
tensorboard = "*"
tensorboardx = "*"
psutil = "*"
click = "*"
boto3 = "*"
accelerate = "*"
datasets = "*"
diffusers = "*"
av = "*"
cmake = "*"
# llvm-openmp = "*"
imagecodecs = "*"
ray = {version = "*", extras = ["default", "tune"]}
torch = "^2.3"
torchvision = "*"
# pytorch3d = "*"
pytorchvideo = "*"
[tool.setuptools]
packages = { find = { where = ["src"] } }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"