pyproject.toml 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.34.1",
  17. "datasets>=2.14.5",
  18. "bitsandbytes>=0.41.1",
  19. "peft>=0.5.0",
  20. "lightning>=2.1.0",
  21. "hydra-core>=1.3.2",
  22. "tensorboard>=2.14.1",
  23. "natsort>=8.4.0",
  24. "einops>=0.7.0",
  25. "librosa>=0.10.1",
  26. "vector-quantize-pytorch>=1.10.0",
  27. "rich>=13.5.3",
  28. "gradio>=4.0.0",
  29. "diffusers@git+https://github.com/huggingface/diffusers",
  30. "cn2an",
  31. "pypinyin",
  32. "jieba",
  33. "g2p_en",
  34. "pyopenjtalk",
  35. "wandb",
  36. "tensorboard",
  37. ]
  38. [build-system]
  39. requires = ["setuptools", "setuptools-scm"]
  40. build-backend = "setuptools.build_meta"
  41. [tool.setuptools]
  42. packages = ["fish_speech"]