forked from strands-labs/robots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
184 lines (173 loc) · 4.49 KB
/
pyproject.toml
File metadata and controls
184 lines (173 loc) · 4.49 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "strands-robots"
dynamic = ["version"]
description = "AI-powered robot control, simulation, and training for Strands Agents — integrates with MuJoCo, Isaac Sim, Newton, and many more"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "AWS", email = "opensource@amazon.com"},
]
keywords = [
"robots", "agents", "lerobot", "strands", "sdk",
"mujoco", "simulation", "reinforcement-learning",
"groot", "nvidia", "isaac-sim", "vla",
"robot-learning", "imitation-learning",
"teleoperation", "manipulation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"strands-agents>=1.0.0",
"numpy>=1.21.0",
"opencv-python-headless>=4.5.0",
"Pillow>=8.0.0",
]
[project.optional-dependencies]
groot-service = [
"pyzmq>=27.0.0",
"msgpack>=1.0.0",
]
lerobot = [
"torch>=2.0.0",
"lerobot>=0.4.0",
"lerobot[feetech]",
]
mujoco = [
"mujoco>=3.0.0",
"Pillow>=8.0.0",
]
isaac = [
# Isaac Sim/Lab are installed separately (requires NVIDIA GPU + Isaac Sim runtime)
# See docs/isaac.md for EC2 setup instructions
"h5py>=3.0",
"mujoco>=3.0.0",
"usd-core>=24.0",
]
newton = [
"warp-lang>=1.11.0",
"trimesh",
"mujoco>=3.5.0",
"numpy>=1.24.0",
]
cosmos-transfer = [
"torch>=2.1.0",
"torchvision",
"pydantic>=2.0",
]
cosmos-predict = [
"torch>=2.1.0",
"torchvision",
"omegaconf>=2.3.0",
"loguru>=0.7.0",
"tyro>=1.0.0",
"h5py>=3.0",
"einops>=0.6.0",
"filelock>=3.0",
]
marble = [
"requests>=2.28.0",
"trimesh>=4.0.0",
"plyfile>=1.0.0",
]
robometer = [
"torch>=2.0.0",
"transformers>=4.40.0",
"scipy>=1.10.0",
]
zenoh = [
"eclipse-zenoh>=1.0.0",
]
policies = [
"transformers>=4.40.0",
"sentencepiece>=0.1.99",
"num2words>=0.5.13",
"scipy>=1.10.0",
"imageio>=2.30.0",
"imageio-ffmpeg>=0.4.0",
"av>=10.0.0",
]
leisaac = [
"leisaac[isaaclab]",
"lerobot>=0.4.0",
]
all = [
"strands-robots[groot-service]",
"strands-robots[lerobot]",
"strands-robots[mujoco]",
"strands-robots[policies]",
"strands-robots[newton]",
"strands-robots[cosmos-transfer]",
"strands-robots[cosmos-predict]",
"strands-robots[marble]",
"strands-robots[robometer]",
"strands-robots[zenoh]",
"strands-robots[leisaac]",
]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"flake8",
"mypy",
]
[project.urls]
Homepage = "https://github.com/strands-labs/robots"
Documentation = "https://github.com/strands-labs/robots#readme"
Repository = "https://github.com/strands-labs/robots.git"
Issues = "https://github.com/strands-labs/robots/issues"
Changelog = "https://github.com/strands-labs/robots/releases"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["strands_robots"]
[tool.hatch.envs.default]
dependencies = [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"flake8",
"mypy",
"Pillow>=8.0.0",
"requests>=2.28.0",
"msgpack>=1.0.0",
"pyzmq>=27.0.0",
]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
test-integ = "pytest tests_integ/ -v --timeout=300 {args}"
lint = ["black --check strands_robots tests tests_integ", "isort --check-only strands_robots tests tests_integ", "flake8 strands_robots tests tests_integ"]
format = ["black strands_robots tests tests_integ", "isort strands_robots tests tests_integ"]
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=strands_robots --cov-report=term-missing"
markers = [
"gpu: requires CUDA GPU (deselected by default, run with: pytest -m gpu)",
]