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

10 months ago
12345678910111213141516171819202122232425262728293031
  1. [project]
  2. name = "dora-yolo"
  3. version = "0.3.12"
  4. authors = [
  5. { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" },
  6. { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" },
  7. ]
  8. description = "Dora Node for object detection with dora YOLOv8"
  9. license = { text = "MIT" }
  10. readme = "README.md"
  11. requires-python = ">=3.8"
  12. dependencies = ["dora-rs >= 0.3.9", "numpy < 2.0.0", "ultralytics >= 8.3.24"]
  13. [dependency-groups]
  14. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  15. [project.scripts]
  16. dora-yolo = "dora_yolo.main:main"
  17. [tool.ruff.lint]
  18. extend-select = [
  19. "D", # pydocstyle
  20. "UP", # Ruff's UP rule
  21. "PERF", # Ruff's PERF rule
  22. "RET", # Ruff's RET rule
  23. "RSE", # Ruff's RSE rule
  24. "NPY", # Ruff's NPY rule
  25. "N", # Ruff's N rule
  26. "I", # Ruff's I rule
  27. ]