pyproject.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 = "Apache-2.0"}
  12. classifiers = [
  13. "Programming Language :: Python :: 3",
  14. ]
  15. dependencies = [
  16. "numpy<=1.26.4",
  17. "transformers>=4.45.2",
  18. "datasets==2.18.0",
  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>5.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. "pyrootutils>=1.0.4",
  34. "vector_quantize_pytorch==1.14.24",
  35. "resampy>=0.4.3",
  36. "einx[torch]==0.2.2",
  37. "zstandard>=0.22.0",
  38. "pydub",
  39. "pyaudio",
  40. "faster_whisper",
  41. "modelscope==1.17.1",
  42. "funasr==1.1.5",
  43. "opencc-python-reimplemented==0.1.7",
  44. "silero-vad",
  45. "ormsgpack",
  46. "tiktoken>=0.8.0",
  47. "pydantic==2.9.2",
  48. "cachetools",
  49. ]
  50. [project.optional-dependencies]
  51. stable = [
  52. "torch<=2.4.1",
  53. "torchaudio",
  54. ]
  55. [build-system]
  56. requires = ["setuptools", "setuptools-scm"]
  57. build-backend = "setuptools.build_meta"
  58. [tool.setuptools]
  59. packages = ["fish_speech", "tools"]