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

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