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

10 months ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [project]
  2. name = "dora-parler"
  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 Text to speech with dora Parler-TTS"
  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. "sentencepiece >= 0.1.99",
  16. "pyaudio >= 0.2.14",
  17. "modelscope >= 1.18.1",
  18. "transformers >=4.48.0,<=4.48.0",
  19. ]
  20. [tool.uv.sources]
  21. parler_tts = { git = "https://github.com/huggingface/parler-tts.git" }
  22. [dependency-groups]
  23. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  24. [project.scripts]
  25. dora-parler = "dora_parler.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. ]