Spaces:
Running
Running
File size: 474 Bytes
b8c51d6 |
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 |
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "f5_tts"
version = "0.1.0"
description = "Internal F5 TTS package"
authors = [
{ name="Your Name", email="your@email.com" }
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"torch>=2.0,<2.5",
"torchaudio>=2.0,<2.5",
"transformers>=4.35",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["f5_tts"]
|