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 1.4 kB

10 months ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [project]
  2. name = "dora-outtetts"
  3. version = "0.3.11"
  4. authors = []
  5. description = "dora-outtetts"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.10"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "numpy < 2.0.0",
  12. "pyarrow >= 5.0.0",
  13. "outetts >= 0.2.3",
  14. "llama-cpp-python>=0.2.0",
  15. ]
  16. [dependency-groups]
  17. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  18. [tool.uv.sources]
  19. llama-cpp-python = [
  20. { marker = "sys_platform == 'darwin' and python_version == '3.9'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp39-cp39-macosx_11_0_arm64.whl" },
  21. { marker = "sys_platform == 'darwin' and python_version == '3.10'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp310-cp310-macosx_11_0_arm64.whl" },
  22. { marker = "sys_platform == 'darwin' and python_version == '3.11'", url = "https://github.com/abetlen/llama-cpp-python/releases/download/v0.3.5-metal/llama_cpp_python-0.3.5-cp311-cp311-macosx_11_0_arm64.whl" },
  23. ]
  24. [project.scripts]
  25. dora-outtetts = "dora_outtetts.main:main"
  26. [tool.ruff.lint]
  27. extend-select = [
  28. "D", # pydocstyle
  29. "UP", # Ruff's UP rule
  30. "PERF", # Ruff's PERF rule
  31. "RET", # Ruff's RET rule
  32. "RSE", # Ruff's RSE rule
  33. "NPY", # Ruff's NPY rule
  34. "N", # Ruff's N rule
  35. "I", # Ruff's I rule
  36. ]