mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
43 lines
848 B
TOML
43 lines
848 B
TOML
[project]
|
|
name = "kokoro-fastapi"
|
|
version = "0.1.0"
|
|
description = "FastAPI TTS Service"
|
|
readme = "../README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
# Core dependencies
|
|
"fastapi==0.115.6",
|
|
"uvicorn==0.34.0",
|
|
"click>=8.0.0",
|
|
"pydantic==2.10.4",
|
|
"pydantic-settings==2.7.0",
|
|
"python-dotenv==1.0.1",
|
|
"sqlalchemy==2.0.27",
|
|
|
|
# ML/DL Base
|
|
"numpy>=1.26.0",
|
|
"scipy==1.14.1",
|
|
"onnxruntime==1.20.1",
|
|
|
|
# Audio processing
|
|
"soundfile==0.13.0",
|
|
|
|
# Text processing
|
|
"phonemizer==3.3.0",
|
|
"regex==2024.11.6",
|
|
|
|
# Utilities
|
|
"aiofiles==23.2.1",
|
|
"tqdm==4.67.1",
|
|
"requests==2.32.3",
|
|
"munch==4.0.0",
|
|
"tiktoken==0.8.0",
|
|
"loguru==0.7.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest==8.0.0",
|
|
"httpx==0.26.0",
|
|
"pytest-asyncio==0.23.5",
|
|
]
|