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 689 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
10 months ago
12345678910111213141516171819202122232425262728
  1. [project]
  2. name = "dora-ios-lidar"
  3. version = "0.3.11"
  4. authors = [{ name = "Your Name", email = "email@email.com" }]
  5. description = "dora-ios-lidar"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.8"
  9. dependencies = ["dora-rs >= 0.3.9", "opencv-python>=4.11.0.86", "record3d>=1.4", "scipy"]
  10. [dependency-groups]
  11. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  12. [project.scripts]
  13. dora-ios-lidar = "dora_ios_lidar.main:main"
  14. [tool.ruff.lint]
  15. extend-select = [
  16. "D", # pydocstyle
  17. "UP", # Ruff's UP rule
  18. "PERF", # Ruff's PERF rule
  19. "RET", # Ruff's RET rule
  20. "RSE", # Ruff's RSE rule
  21. "NPY", # Ruff's NPY rule
  22. "N", # Ruff's N rule
  23. "I", # Ruff's I rule
  24. ]