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

10 months ago
12345678910111213141516171819202122232425262728293031323334
  1. [project]
  2. name = "dora-pyrealsense"
  3. version = "0.3.11"
  4. authors = [{ name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }]
  5. description = "Dora Node for capturing video with Pyrealsense"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.8"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "numpy < 2.0.0",
  12. "opencv-python >= 4.1.1",
  13. "pyrealsense2-macosx >= 2.54.2; sys_platform == 'darwin'",
  14. "pyrealsense2 == 2.54.1.5216; sys_platform == 'linux'",
  15. "pyrealsense2 == 2.54.1.5216; sys_platform == 'windows'",
  16. ]
  17. [dependency-groups]
  18. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  19. [project.scripts]
  20. dora-pyrealsense = "dora_pyrealsense.main:main"
  21. [tool.ruff.lint]
  22. extend-select = [
  23. "D", # pydocstyle
  24. "UP", # Ruff's UP rule
  25. "PERF", # Ruff's PERF rule
  26. "RET", # Ruff's RET rule
  27. "RSE", # Ruff's RSE rule
  28. "NPY", # Ruff's NPY rule
  29. "N", # Ruff's N rule
  30. "I", # Ruff's I rule
  31. ]