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

10 months ago
123456789101112131415161718192021222324252627282930
  1. [project]
  2. name = "opencv-plot"
  3. version = "0.3.11-rc1"
  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 plotting text and bbox on image with OpenCV"
  9. requires-python = ">=3.8"
  10. dependencies = ["dora-rs >= 0.3.9", "numpy < 2.0.0", "opencv-python >= 4.1.1"]
  11. [dependency-groups]
  12. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  13. [project.scripts]
  14. opencv-plot = "opencv_plot.main:main"
  15. [tool.ruff.lint]
  16. extend-select = [
  17. "D", # pydocstyle
  18. "UP", # Ruff's UP rule
  19. "PERF", # Ruff's PERF rule
  20. "RET", # Ruff's RET rule
  21. "RSE", # Ruff's RSE rule
  22. "NPY", # Ruff's NPY rule
  23. "N", # Ruff's N rule
  24. "I", # Ruff's I rule
  25. ]