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

12345678910111213141516171819202122232425
  1. [project]
  2. name = "dora-mediapipe"
  3. version = "0.0.0"
  4. authors = [{ name = "Your Name", email = "email@email.com" }]
  5. description = "dora-mediapipe"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.8"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "mediapipe>=0.10.14",
  12. ]
  13. [dependency-groups]
  14. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  15. [project.scripts]
  16. dora-mediapipe = "dora_mediapipe.main:main"
  17. [tool.ruff.lint]
  18. extend-select = [
  19. "D", # pydocstyle
  20. "UP"
  21. ]