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

9 months ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [project]
  2. name = "dora-phi4"
  3. version = "0.3.11"
  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.48.2",
  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. "bitsandbytes>=0.42.0",
  21. "opencv-python",
  22. "requests",
  23. ]
  24. [tool.setuptools]
  25. packages = ["dora_phi4"]
  26. [dependency-groups]
  27. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  28. [project.scripts]
  29. dora-phi4 = "dora_phi4.main:main"
  30. [tool.ruff.lint]
  31. extend-select = [
  32. "D", # pydocstyle
  33. "UP", # Ruff's UP rule
  34. "PERF", # Ruff's PERF rule
  35. "RET", # Ruff's RET rule
  36. "RSE", # Ruff's RSE rule
  37. "NPY", # Ruff's NPY rule
  38. "N", # Ruff's N rule
  39. "I", # Ruff's I rule
  40. ]