-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.22 KB
/
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
[project]
name = "kokoro-onnx"
version = "0.3.6"
description = "TTS with kokoro and onnx runtime"
readme = "README.md"
authors = [
]
requires-python = ">=3.9,<3.13" # librosa -> llvmlite have no support for python > 3.12.
dependencies = [
"onnxruntime>=1.20.1",
"colorlog>=6.9.0",
"espeakng-loader>=0.2.4",
"phonemizer-fork==3.3.1", # TODO: remove once https://github.com/thewh1teagle/espeakng-loader/issues/2 merged
"librosa>=0.10.2.post1", # TODO: get rid of librosa with something that works on more versions and platforms.
"numba>=0.60.0", # librosa -> numba have issues with python 3.12
"numpy>=2.0.2",
]
[project.urls]
Homepage = "https://github.com/thewh1teagle/kokoro-onnx"
Repository = "https://github.com/thewh1teagle/kokoro-onnx"
Issues = "https://github.com/thewh1teagle/kokoro-onnx/issues"
[project.optional-dependencies]
# Windows/Linux gpu feature
# Install with kokoro-onnx[gpu]
gpu = [
"onnxruntime-gpu>=1.20.1; sys_platform != 'darwin'",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["ruff>=0.8.6", "sounddevice>=0.5.1", "soundfile>=0.13.0"]