forked from Zyphra/Zonos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 927 Bytes
/
pyproject.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "zonos"
version = "0.1.0"
description = "Text-to-speech by Zyphra"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.5.1",
"setuptools",
"packaging",
"inflect>=7.5.0",
"kanjize>=1.5.0",
"numpy>=2.2.2",
"phonemizer>=3.3.0",
"sudachidict-full>=20241021",
"sudachipy>=0.6.10",
"torchaudio>=2.5.1",
"transformers>=4.48.1",
"soundfile>=0.13.1",
"huggingface-hub>=0.28.1",
"gradio>=5.15.0",
]
# Note: Not actually optional. All the modeling code lives in mamba-ssm.
# We put them here to make the two-stage installation process easier.
[project.optional-dependencies]
compile = [
"flash-attn>=2.7.3",
"mamba-ssm>=2.2.4",
"causal-conv1d>=1.5.0.post8",
]
[tool.setuptools.packages.find]
include = ["zonos"]
[tool.uv]
no-build-isolation-package = ["flash-attn", "mamba-ssm", "causal-conv1d"]
[tool.ruff]
line-length = 120