pyproject.toml 889 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.9.18",
  27. "rich>=13.5.3",
  28. "cn2an",
  29. "pypinyin",
  30. "jieba",
  31. "g2p_en",
  32. "pyopenjtalk",
  33. "wandb",
  34. "tensorboard",
  35. ]
  36. [build-system]
  37. requires = ["setuptools", "setuptools-scm"]
  38. build-backend = "setuptools.build_meta"
  39. [tool.setuptools]
  40. packages = ["fish_speech"]