| [build-system] | |
| requires = ["setuptools>=68"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "wfloat-tts" | |
| version = "0.1.0" | |
| description = "Reference inference helpers for the Wfloat TTS checkpoint release." | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| dependencies = [ | |
| "numpy>=1.24", | |
| "packaging>=23", | |
| "safetensors>=0.4", | |
| "torch>=2.1", | |
| ] | |
| [project.scripts] | |
| wfloat-tts = "wfloat_tts.cli:main" | |
| [tool.setuptools] | |
| package-dir = {"" = "src"} | |
| [tool.setuptools.packages.find] | |
| where = ["src"] | |