File size: 507 Bytes
f71bc95 | 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 | [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"]
|