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

10 months ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [project]
  2. name = "dora-internvl"
  3. version = "0.3.11"
  4. authors = [
  5. { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" },
  6. { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" },
  7. ]
  8. description = "Dora Node for VLM"
  9. license = { text = "MIT" }
  10. readme = "README.md"
  11. requires-python = ">=3.8"
  12. dependencies = [
  13. "dora-rs >= 0.3.9",
  14. "numpy < 2.0.0",
  15. "torch >= 2.7.0",
  16. "torchvision >= 0.22",
  17. "torchaudio >= 2.7.0",
  18. "transformers >= 4.11.3",
  19. "pillow >= 10.0.0",
  20. "bitsandbytes >= 0.41.0",
  21. "einops >= 0.6.1",
  22. "einops-exts >= 0.0.4",
  23. "timm >= 0.9.12",
  24. "sentencepiece >= 0.1.99",
  25. ]
  26. [dependency-groups]
  27. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  28. [project.scripts]
  29. dora-internvl = "dora_internvl.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. ]