glados-tts/pyproject.toml

47 lines
1.1 KiB
TOML

[tool.poetry]
name = "glados-tts"
version = "0.2.0"
description = "A GLaDOS TTS, using Forward Tacotron and HiFiGAN. Inference is fast and stable, even on the CPU. A low quality vocoder model is included for mobile use. "
authors = [
"Ben Kristinsson <ben@sudo.is>",
"VRCWizard",
"Timmy Knight"
]
homepage = "https://git.sudo.is/ben/glados-tts"
repository = "https://git.sudo.is/ben/glados-tts"
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
click = "^8.1.3"
loguru = "^0.7.0"
phonemizer = "^3.2.1"
python = "^3.9"
torch = "2.0.0"
inflect = "^6.0.4"
Unidecode = "^1.3.6"
PySoundFile = "^0.9.0.post1"
numpy = "^1.24.2"
click-help-colors = "^0.9.1"
fastapi = "^0.95.1"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
pydantic = "^1.10.7"
soundfile = "^0.12.1"
gunicorn = "^20.1.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
flake8 = "^6.0.0"
isort = "^5.12.0"
poethepoet = "^0.19.0"
pytest = "^7.3.0"
[tool.poetry.scripts]
gladosctl = "glados_tts.gladosctl:main"
[tool.poetry_bumpversion.file."glados_tts/__init__.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"