pyproject.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "transformers>=4.35.2",
  17. "datasets>=2.14.5",
  18. "lightning>=2.1.0",
  19. "hydra-core>=1.3.2",
  20. "tensorboard>=2.14.1",
  21. "natsort>=8.4.0",
  22. "einops>=0.7.0",
  23. "librosa>=0.10.1",
  24. "vector-quantize-pytorch>=1.10.0",
  25. "rich>=13.5.3",
  26. "gradio>=4.0.0",
  27. "cn2an>=0.5.22",
  28. "pypinyin>=0.49.0",
  29. "jieba>=0.42.1",
  30. "g2p-en>=2.1.0",
  31. "pyopenjtalk>=0.3.2",
  32. "wandb>=0.15.11",
  33. "grpcio>=1.58.0",
  34. "kui>=1.6.0",
  35. "zibai-server>=0.9.0",
  36. "loguru>=0.6.0",
  37. ]
  38. [project.optional-dependencies]
  39. asr = [
  40. "openai-whisper",
  41. "modelscope"
  42. ]
  43. [build-system]
  44. requires = ["setuptools", "setuptools-scm"]
  45. build-backend = "setuptools.build_meta"
  46. [tool.setuptools]
  47. packages = ["fish_speech"]