forked from huggingface/LIBERO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 988 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hf_libero"
version = "0.1.3"
description = "LIBERO: Benchmark and environments for robot learning"
authors = [
{ name = "Jade Choghari", email = "jade.choghari@huggingface.co" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
# egl probe: canonical repo
"hf-egl-probe>=1.0.1",
# core runtime / reproducible pins
"hydra-core>=1.2,<1.4",
"robomimic==0.2.0",
"robosuite==1.4.0",
"bddl==1.0.1",
# common libs
"numpy",
"transformers",
"easydict",
"einops",
"thop",
"matplotlib>=3.5.3",
"cloudpickle>=2.0.0",
"opencv-python",
"wandb",
# gym: compatible range
"gymnasium >= 0.29.0",
"mujoco>=3.0.0",
"future>=0.18.2",
]
[project.urls]
Homepage = "https://github.com/huggingface/LIBERO"
Issues = "https://github.com/huggingface/LIBERO/issues"