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

1 year ago
1 year ago
1 year ago
12345678910111213141516171819202122232425262728293031323334353637
  1. [project]
  2. name = "opencv-plot"
  3. version = "0.3.12"
  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 = [
  12. "dora-rs >= 0.3.9",
  13. "numpy < 2.0.0",
  14. "opencv-python >= 4.1.1",
  15. "pillow-avif-plugin>=1.5.1",
  16. "pillow>=10.4.0",
  17. ]
  18. [dependency-groups]
  19. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  20. [project.scripts]
  21. opencv-plot = "opencv_plot.main:main"
  22. [tool.ruff.lint]
  23. extend-select = [
  24. "D", # pydocstyle
  25. "UP", # Ruff's UP rule
  26. "PERF", # Ruff's PERF rule
  27. "RET", # Ruff's RET rule
  28. "RSE", # Ruff's RSE rule
  29. "NPY", # Ruff's NPY rule
  30. "N", # Ruff's N rule
  31. "I", # Ruff's I rule
  32. ]