-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (82 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
98 lines (82 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "diffusion_policy"
version = "0.1.0"
description = "Diffusion Policy for Visuomotor Policy Learning"
readme = "README.md"
requires-python = ">=3.9,<3.12"
license = {text = "MIT"}
dependencies = [
# Core ML
"torch>=2.1.0",
"torchvision>=0.16.0",
# Numerical computing
"numpy>=1.23.3,<2.0",
"numba>=0.56.4",
"scipy>=1.9.1",
# Image/Video processing
"opencv-python>=4.6.0",
"scikit-image>=0.19.3",
"scikit-video>=1.1.11",
"imageio>=2.22.0",
"imageio-ffmpeg>=0.4.7",
"av>=10.0.0",
# Config/Logging
"hydra-core>=1.2.0",
"omegaconf>=2.2.0",
"wandb>=0.13.3",
"tensorboard>=2.10.1",
"tensorboardx>=2.5.1",
# Data handling
"zarr>=2.12.0,<3.0",
"numcodecs>=0.10.2,<0.14",
"h5py>=3.7.0",
"datasets>=2.6.1",
# RL/Robotics
"gym>=0.23.0,<0.24.0",
"pymunk>=6.2.1,<7.0",
"dm-control>=1.0.9",
"pygame>=2.1.2",
"pybullet>=3.1.6",
# Diffusion/Transformers
"diffusers>=0.11.1",
"accelerate>=0.13.2",
"einops>=0.4.1",
# Utilities
"tqdm>=4.64.1",
"dill>=0.3.5",
"matplotlib>=3.6.1",
"shapely>=1.8.4",
"cython>=0.29.32",
"termcolor>=2.0.1",
"psutil>=5.9.2",
"click>=8.0.4",
"boto3>=1.24.96",
"threadpoolctl>=3.1.0",
"cffi>=1.15.1",
# Ray for distributed training
"ray[default,tune]>=2.2.0",
# Robomimic (must be 0.2.0 - 0.3.0 removed CropRandomizer)
"robomimic==0.2.0",
# Robosuite
"robosuite>=1.5.0",
# Video models
"pytorchvideo>=0.1.5",
]
[project.optional-dependencies]
dev = [
"pytest",
"ipykernel",
]
real = [
# Real robot dependencies - may need system libraries
"pyrealsense2>=2.51.1",
"pynput>=1.7.6",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.uv]
# Use PyTorch index for CUDA 12.x wheels
extra-index-url = ["https://download.pytorch.org/whl/cu124"]