| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [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.35.2",
- "datasets>=2.14.5",
- "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.10.0",
- "rich>=13.5.3",
- "gradio>=4.0.0",
- "pypinyin>=0.49.0",
- "jieba>=0.42.1",
- "g2p-en>=2.1.0",
- "pyopenjtalk>=0.3.2",
- "wandb>=0.15.11",
- "grpcio>=1.58.0",
- "kui>=1.6.0",
- "zibai-server>=0.9.0",
- "loguru>=0.6.0",
- "WeTextProcessing>=0.1.10",
- ]
- [project.optional-dependencies]
- asr = [
- "openai-whisper",
- "modelscope"
- ]
- [build-system]
- requires = ["setuptools", "setuptools-scm"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools]
- packages = ["fish_speech"]
|