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

1234567891011121314151617181920212223
  1. [tool.poetry]
  2. name = "opencv-plot"
  3. version = "0.3.5"
  4. authors = [
  5. "Haixuan Xavier Tao <tao.xavier@outlook.com>",
  6. "Enzo Le Van <dev@enzo-le-van.fr>",
  7. ]
  8. description = "Dora Node for plotting text and bbox on image with OpenCV"
  9. readme = "README.md"
  10. packages = [{ include = "opencv_plot" }]
  11. [tool.poetry.dependencies]
  12. dora-rs = "0.3.5"
  13. numpy = "< 2.0.0"
  14. opencv-python = ">= 4.1.1"
  15. [tool.poetry.scripts]
  16. opencv-plot = "opencv_plot.main:main"
  17. [build-system]
  18. requires = ["poetry-core>=1.8.0"]
  19. build-backend = "poetry.core.masonry.api"