| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- [project]
- name = "fish-speech"
- version = "0.1.0"
- authors = [
- {name = "Lengyue", email = "lengyue@lengyue.me"},
- ]
- description = "Fish Speech"
- readme = "README.md"
- requires-python = ">=3.10"
- keywords = ["TTS", "Speech"]
- license = {text = "BSD-3-Clause"}
- classifiers = [
- "Programming Language :: Python :: 3",
- ]
- dependencies = [
- "transformers>=4.34.1",
- "datasets>=2.14.5",
- "bitsandbytes>=0.41.1",
- "peft>=0.5.0",
- "lightning>=2.1.0",
- "hydra-core>=1.3.2",
- "tensorboard>=2.14.1",
- "natsort>=8.4.0",
- "einops>=0.7.0",
- "librosa>=0.10.1",
- "vector-quantize-pytorch>=1.9.18",
- "rich>=13.5.3",
- "cn2an",
- "pypinyin",
- "jieba",
- "g2p_en",
- "pyopenjtalk",
- ]
- [build-system]
- requires = ["setuptools", "setuptools-scm"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools]
- packages = ["fish_speech"]
|