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

1234567891011121314151617181920212223242526
  1. [project]
  2. name = "dora-llama-cpp-python"
  3. version = "0.0.0"
  4. authors = [{ name = "Shashwat Patil", email = "email@email.com" }]
  5. description = "dora-llama-cpp-python"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.9"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "torch == 2.4.0",
  12. "torchvision >= 0.19",
  13. "torchaudio >= 2.1.0",
  14. "opencv-python >= 4.1.1",
  15. "modelscope >= 1.18.1",
  16. "accelerate >= 1.3.0",
  17. "transformers",
  18. "llama-cpp-python",
  19. ]
  20. [dependency-groups]
  21. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  22. [project.scripts]
  23. dora-llama-cpp-python = "dora_llama_cpp_python.main:main"