skills-vault/skills/voice-generation/pyproject.toml

24 lines
472 B
TOML

[project]
name = "voice-gen"
version = "0.1.0"
description = "Batch TTS via mmx CLI with custom voice clones"
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.scripts]
voice-gen = "voice_gen.cli:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"