jshah13 commited on
Commit
644ee6a
·
verified ·
1 Parent(s): 6569132

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +32 -0
pyproject.toml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "openenv-robo-replan"
3
+ version = "0.1.0"
4
+ description = "OpenEnv tabletop replanning benchmark for embodied task planning"
5
+ requires-python = ">=3.10"
6
+ dependencies = [
7
+ "numpy>=1.24.0",
8
+ "fastapi>=0.110.0",
9
+ "uvicorn>=0.29.0",
10
+ "pydantic>=2.0.0",
11
+ "gymnasium>=0.29.0",
12
+ "openenv-core>=0.2.1",
13
+ ]
14
+
15
+ [project.optional-dependencies]
16
+ physics = [
17
+ "mujoco>=3.0.0",
18
+ "robosuite>=1.4.1",
19
+ ]
20
+ train = [
21
+ "trl>=0.8.0",
22
+ "transformers>=4.40.0",
23
+ "torch>=2.2.0",
24
+ "datasets>=2.18.0",
25
+ ]
26
+
27
+ [tool.setuptools.packages.find]
28
+ include = ["server*"]
29
+
30
+ [build-system]
31
+ requires = ["setuptools>=68"]
32
+ build-backend = "setuptools.build_meta"