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

12345678910111213141516171819202122232425262728293031323334353637
  1. [project]
  2. name = "video-encoder"
  3. version = "0.1"
  4. authors = [{ name = "Hennzau", email = "<dev@enzo-le-van.fr>"}]
  5. description = "Dora Node for video encoding (LeRobot compatible)."
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.9"
  9. dependencies = [
  10. "dora-rs == 0.3.5",
  11. "numpy <= 2.0.0",
  12. "opencv-python >= 4.1.1",
  13. "python-ffmpeg ~= 2.0.12",
  14. ]
  15. [dependency-groups]
  16. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  17. [project.scripts]
  18. video-encoder = "video_encoder.main:main"
  19. [build-system]
  20. requires = ["poetry-core>=1.8.0"]
  21. build-backend = "poetry.core.masonry.api"
  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. ]