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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [project]
  2. name = "dora-phi4"
  3. version = "0.3.12"
  4. authors = [{ name = "Somay", email = "ssomay2002@gmail.com" }]
  5. description = "DORA node for Phi-4 multimodal model"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.10"
  9. dependencies = [
  10. "dora-rs>=0.3.9",
  11. "torch==2.6.0",
  12. "torchvision==0.21.0",
  13. "transformers==4.53.0",
  14. "accelerate==1.3.0",
  15. "soundfile==0.13.1",
  16. "pillow==11.1.0",
  17. "scipy==1.15.2",
  18. "backoff==2.2.1",
  19. "peft==0.13.2",
  20. "opencv-python",
  21. "requests",
  22. ]
  23. [tool.setuptools]
  24. packages = ["dora_phi4"]
  25. [dependency-groups]
  26. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  27. [project.scripts]
  28. dora-phi4 = "dora_phi4.main:main"
  29. [tool.ruff.lint]
  30. extend-select = [
  31. "D", # pydocstyle
  32. "UP", # Ruff's UP rule
  33. "PERF", # Ruff's PERF rule
  34. "RET", # Ruff's RET rule
  35. "RSE", # Ruff's RSE rule
  36. "NPY", # Ruff's NPY rule
  37. "N", # Ruff's N rule
  38. "I", # Ruff's I rule
  39. ]