Spaces:
Runtime error
Runtime error
File size: 1,129 Bytes
c35cd37 7e9f59c c35cd37 7e9f59c c35cd37 7e9f59c c35cd37 7e9f59c c35cd37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
[tool.poetry]
name = "tts-service"
version = "0.1.0"
description = ""
authors = ["Jesus Lopez <jesus@jesusla.com>"]
readme = "README.md"
[tool.poetry.scripts]
tts-service = "tts_service.cli:main"
[tool.poetry.dependencies]
python = "~3.12"
[tool.poetry.group.cli.dependencies]
click = "^8.1.7"
click-help-colors = "^0.9.4"
[tool.poetry.group.ci.dependencies]
gradio = "^5.6.0"
huggingface-hub = "^0.26.2"
[tool.poetry.group.dev.dependencies]
debugpy = "^1.8.9"
ipykernel = "^6.29.5"
pipdeptree = "^2.23.4"
pre-commit = "^4.0.1"
ruff = "^0.7.4"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
[tool.poetry.group.typing.dependencies]
mypy = "^1.13.0"
[tool.ruff]
line-length = 132
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.mypy]
strict = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = ["gradio"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|