-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (95 loc) · 2.5 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (95 loc) · 2.5 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
98
99
100
101
102
103
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mesa"
version = "1.0.0"
description = "MESA - An Evaluation Framework for Compositional, Semantic, and Spatial Generalization in Robotics"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Albert Wilcox", email = "albertwilcox@gatech.edu"},
{name = "Frank Chang"},
{name = "Aishani Chakraborty"},
{name = "Nhi Nguyen"},
{name = "Jeremy A. Collins"},
{name = "Vaibhav Saxena"},
{name = "Benjamin Joffe"},
{name = "Siddharth Karamcheti"},
{name = "Animesh Garg"},
]
maintainers = [
{name = "Albert Wilcox", email = "albertwilcox@gatech.edu"},
]
keywords = [
"robotics",
"vision-language-action",
"benchmark",
"manipulation",
"simulation",
"Robot Learning: Imitation Learning",
"Robot Learning: Found Models",
"Robot Learning: Datasets",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = "==3.10.*"
dependencies = [
# Core dependencies
"bddl",
"easydict",
"transforms3d",
"matplotlib",
"numpy>=1.26,<2.0",
"opencv-python==4.6.0.66",
"mujoco==3.4.0",
# Robotics and simulation
"robosuite==1.5.1",
# Data handling
"h5py",
"tqdm",
"termcolor",
"gdown==5.2.1",
# Utilities
"pathlib",
"argparse",
"pyqt5",
"tyro==0.9.31",
"natsort==8.4.0",
"imageio[ffmpeg]==2.37.2",
"pyinstrument==5.1.1",
"openpi_client",
]
[project.optional-dependencies]
lerobot = [
"lerobot",
"datasets<4",
"huggingface_hub>=0.27.1",
]
docs = [
"sphinx-book-theme",
"myst-parser",
"sphinx-copybutton",
"sphinx-autobuild>=2024.10.3",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv.sources]
openpi_client = { path = "third_party/openpi-client", editable = true}
lerobot = { git = "https://github.com/huggingface/lerobot", rev = "0cf864870cf29f4738d3ade893e6fd13fbd7cdb5" }
[tool.hatch.build.targets.wheel]
packages = [
"mesa",
"third_party/openpi-client",
]