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

10 months ago
1234567891011121314151617181920212223242526272829303132
  1. [project]
  2. name = "pyarrow-assert"
  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 plotting text and bbox on image with OpenCV"
  9. license = { text = "MIT" }
  10. readme = "README.md"
  11. requires-python = ">=3.8"
  12. dependencies = ["dora-rs >= 0.3.9", "numpy < 2.0.0", "pyarrow >= 5.0.0"]
  13. [dependency-groups]
  14. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  15. [project.scripts]
  16. pyarrow-assert = "pyarrow_assert.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. ]