forked from srl-ethz/srl_il
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (52 loc) · 1.04 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "srl_il"
version = "0.1.0" # Replace with your actual version
description = "A framework for loading, training, and evaluating for imitation learning. From ETHz Soft Robotics Lab."
readme = "README.md"
# license = "GPL-3.0" # Replace with your actual license
authors = [{ name = "Chenyu Yang", email = "chenyu.yang@ethz.ch" }] # Replace with your details
dependencies = [
"torch",
"torchvision",
"diffusers",
"wandb",
"hydra-core",
"h5py",
"numpy",
"scipy",
"matplotlib",
"opencv-python",
"tqdm",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"mypy",
]
test = [
"pytest",
"coverage",
]
robomimic = [
"robomimic",
"robosuite==1.4.1"
]
diffsion_policy = [
"diffusion_policy",
"threadpoolctl",
"pytorch3d",
"imagecodecs==2022.8.8",
"av"
]
onnx = [
"onnx",
"onnxruntime"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = []