feat(ci): add entrypoints + add version checks + add minimal release testing + uncomment publishing to pypi (#1589)

This commit is contained in:
Steven Palma
2025-07-25 12:06:46 +02:00
committed by GitHub
parent 4c8f002055
commit d4f962fb34
3 changed files with 74 additions and 16 deletions

View File

@@ -156,6 +156,17 @@ all = [
"lerobot[xarm]"
]
[project.scripts]
lerobot-calibrate="lerobot.calibrate:main"
lerobot-find-cameras="lerobot.find_cameras:main"
lerobot-find-port="lerobot.find_port:main"
lerobot-record="lerobot.record:main"
lerobot-replay="lerobot.replay:main"
lerobot-setup-motors="lerobot.setup_motors:main"
lerobot-teleoperate="lerobot.teleoperate:main"
lerobot-eval="lerobot.scripts.eval:main"
lerobot-train="lerobot.scripts.train:main"
# ---------------- Tool Configurations ----------------
[tool.setuptools.packages.find]
where = ["src"]