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

12345678910111213141516171819202122
  1. [project]
  2. name = "dora-bench"
  3. version = "0.1.0"
  4. description = "Script to benchmark performance of llms while using dora"
  5. authors = [{ name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" }]
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.11"
  9. dependencies = [
  10. "dora-rs>=0.3.9",
  11. "librosa>=0.10.0",
  12. "opencv-python>=4.8",
  13. "Pillow>=10",
  14. ]
  15. [project.scripts]
  16. dora-benches = "benchmark_script.main:main"
  17. [build-system]
  18. requires = ["setuptools>=61", "wheel"]
  19. build-backend = "setuptools.build_meta"