pyproject.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [project]
  2. name = "fish-speech"
  3. version = "0.1.0"
  4. authors = [
  5. {name = "Lengyue", email = "lengyue@lengyue.me"},
  6. ]
  7. description = "Fish Speech"
  8. readme = "README.md"
  9. requires-python = ">=3.10"
  10. keywords = ["TTS", "Speech"]
  11. license = {text = "BSD-3-Clause"}
  12. classifiers = [
  13. "Programming Language :: Python :: 3",
  14. ]
  15. dependencies = [
  16. "numpy<=1.26.4",
  17. "transformers>=4.35.2",
  18. "datasets>=2.14.5",
  19. "lightning>=2.1.0",
  20. "hydra-core>=1.3.2",
  21. "tensorboard>=2.14.1",
  22. "natsort>=8.4.0",
  23. "einops>=0.7.0",
  24. "librosa>=0.10.1",
  25. "rich>=13.5.3",
  26. "gradio>=4.0.0",
  27. "wandb>=0.15.11",
  28. "grpcio>=1.58.0",
  29. "kui>=1.6.0",
  30. "uvicorn>=0.30.0",
  31. "loguru>=0.6.0",
  32. "loralib>=0.1.2",
  33. "natsort>=8.4.0",
  34. "pyrootutils>=1.0.4",
  35. "vector_quantize_pytorch>=1.14.24",
  36. "samplerate>=0.2.1",
  37. "resampy>=0.4.3",
  38. "einx[torch]==0.2.2"
  39. ]
  40. [project.optional-dependencies]
  41. asr = [
  42. "openai-whisper",
  43. "modelscope"
  44. ]
  45. [build-system]
  46. requires = ["setuptools", "setuptools-scm"]
  47. build-backend = "setuptools.build_meta"
  48. [tool.setuptools]
  49. packages = ["fish_speech"]