You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 572 B

123456789101112131415161718192021222324252627
  1. [project]
  2. name = "dora-pytorch-kinematics"
  3. version = "0.0.0"
  4. authors = [{ name = "Your Name", email = "email@email.com" }]
  5. description = "dora-pytorch-kinematics"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.10"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "mujoco>=3.2.3",
  12. "pytorch-kinematics>=0.7.5",
  13. "robot-descriptions>=1.17.0",
  14. ]
  15. [dependency-groups]
  16. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  17. [project.scripts]
  18. dora-pytorch-kinematics = "dora_pytorch_kinematics.main:main"
  19. [tool.ruff.lint]
  20. extend-select = [
  21. "D", # pydocstyle
  22. "UP",
  23. ]