Spaces:
Sleeping
Sleeping
File size: 289 Bytes
9e34a62 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[project]
name = "metavoice"
version = "0.1.0"
description = "Foundational model for text to speech"
requires-python = ">=3.10,<3.12"
[tool.black]
line-length = 120
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
|