-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.14 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "piper-diffusion-policy"
version = "0.1.0"
description = "Diffusion Policy training and real-robot inference for the AgileX/Songling Piper arm."
readme = "README.md"
requires-python = ">=3.9,<3.11"
authors = [{ name = "gx4070" }]
license = { text = "MIT" }
dependencies = [
"torch",
"torchvision",
"diffusers==0.11.1",
"huggingface-hub<0.26",
"hydra-core==1.2.0",
"omegaconf",
"numpy<2",
"scipy",
"opencv-python",
"h5py",
"zarr",
"numcodecs",
"einops",
"wandb",
"dill",
"tqdm",
"threadpoolctl",
"click",
"python-can==4.6.1"
]
[project.scripts]
piper-dp-train = "train:main"
piper-dp-eval-real = "eval_piper_real_robot:main"
[tool.setuptools]
py-modules = ["train", "eval_piper_real_robot"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["diffusion_policy*"]
[tool.setuptools.package-data]
diffusion_policy = [
"config/*.yaml",
"config/task/*.yaml"
]
[tool.pyright]
include = ["diffusion_policy", "train.py", "eval_piper_real_robot.py"]
exclude = ["data", "outputs", "**/__pycache__"]