-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.36 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
[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "muscle-memory"
version = "0.1.0"
description = "Adaptive simulation and training for the fixed MM-01 household robot"
readme = "README.md"
requires-python = ">=3.12,<3.13"
license = { text = "Proprietary" }
authors = [{ name = "Muscle Memory contributors" }]
dependencies = [
"falkordb>=1,<2",
"fastapi>=0.141,<1",
"laser-sdk==0.0.1",
"mujoco==3.6.0",
"numpy==2.3.1",
"onnxruntime==1.28.0",
"opencv-python-headless>=4.12,<5",
"pillow>=11.3,<13",
"pydantic>=2.11,<3",
"rocketride==1.3.0",
"uvicorn[standard]>=0.52,<1",
]
[project.scripts]
mm-smoke = "muscle_memory.cli:smoke_main"
mm-verify-robot = "muscle_memory.cli:verify_robot_main"
[dependency-groups]
dev = [
"httpx==0.28.1",
"mypy>=1.17,<2",
"onnx==1.22.0",
"pytest>=8.4,<10",
"pytest-cov>=6.2,<8",
"ruff>=0.12,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/muscle_memory"]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
markers = [
"slow: real-time or extended simulation qualification",
]
[tool.ruff]
line-length = 100
target-version = "py312"
extend-exclude = ["third_party"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "RUF"]
[tool.mypy]
python_version = "3.12"
strict = true
files = ["src/muscle_memory"]