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

10 months ago
10 months ago
123456789101112131415161718192021222324252627282930313233343536
  1. [project]
  2. name = "dora-cotracker"
  3. version = "0.1.0"
  4. authors = [{ name = "Shashwat Patil", email = "shashwatpatil974@gmail.com" }]
  5. description = "A Dora node implementing real-time object tracking using Facebook's CoTracker model"
  6. license = "CC-BY-1.0"
  7. readme = "README.md"
  8. requires-python = ">=3.10"
  9. dependencies = [
  10. "dora-rs>=0.3.9",
  11. "torch>=2.0.0",
  12. "numpy>=1.24.0",
  13. "opencv-python>=4.8.0",
  14. "pyarrow>=14.0.1",
  15. "cotracker @ git+https://github.com/facebookresearch/co-tracker.git",
  16. ]
  17. [dependency-groups]
  18. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  19. [project.scripts]
  20. dora-cotracker = "dora_cotracker.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. "E", # Ruff's E rule
  32. ]