-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.16 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
[project]
name = "stretch4_mujoco"
# Versioning follow CalVer (YYYY.MM.DD) for PEP 440 compliance
version = "2026.05.07"
description = "A Stretch 4 simulation in MuJoCo"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.8",
"hello-robot-stretch-urdf>=0.1.0",
"hello-robot-stretch4-urdf>=2026.5.6",
"inputs>=0.5",
"matplotlib>=3.10.1",
"mujoco==3.3.1",
"numpy==2.2.5",
"opencv-python",
"pynput>=1.8.1",
"rerun-sdk>=0.23.1",
"yourdfpy",
"urdf2mjcf>=0.2.39"
]
authors = [
{name = "Hello Robot Inc.", email = "support@hello-robot.com"},
]
license = { file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
[tool.setuptools.packages.find]
exclude = ["third_party*", "tests*"]
[project.urls]
Source = "https://github.com/hello-robot/stretch4_mujoco"
Tracker = "https://github.com/hello-robot/stretch4_mujoco/issues"
[tool.black]
line-length = 100
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"flake8",
"black",
"mypy",
]
jupyter = [
"ipykernel",
"ipython",
]