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

11 months ago
11 months ago
11 months ago
10 months ago
12345678910111213141516171819202122232425262728293031323334
  1. [project]
  2. name = "dora-kokoro-tts"
  3. version = "0.3.11"
  4. authors = [{ name = "Your Name", email = "email@email.com" }]
  5. description = "dora-kokoro-tts"
  6. license = { text = "MIT" }
  7. readme = "README.md"
  8. requires-python = ">=3.8"
  9. dependencies = [
  10. "dora-rs >= 0.3.9",
  11. "kokoro>=0.2.2",
  12. "soundfile>=0.13.1",
  13. "misaki[zh]",
  14. ]
  15. [dependency-groups]
  16. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  17. [project.scripts]
  18. dora-kokoro-tts = "dora_kokoro_tts.main:main"
  19. [tool.ruff.lint]
  20. extend-select = [
  21. "D", # pydocstyle
  22. "UP", # Ruff's UP rule
  23. "PERF", # Ruff's PERF rule
  24. "RET", # Ruff's RET rule
  25. "RSE", # Ruff's RSE rule
  26. "NPY", # Ruff's NPY rule
  27. "N", # Ruff's N rule
  28. "I", # Ruff's I rule
  29. "E", # Ruff's E rule
  30. ]