forked from High-Logic/Genie-TTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.73 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "genie-tts"
version = "2.0.2"
authors = [
{ name = "High_Logic", email = "highlogic233@gmail.com" },
]
description = "GPT-SoVITS ONNX Inference Engine & Model Converter"
# readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"onnx", # ONNX 模型格式支持
"onnxruntime==1.22.1", # ONNX 推理引擎, 指定版本号以避免 1.23 的性能倒退
"tokenizers", # HuggingFace tokenizer
"numpy", # 数值计算
"soundfile", # 音频读写
"soxr", # 高质量重采样
"pyyaml", # YAML 解析
"sounddevice", # 音频播放
"pydantic", # 配置 / 数据模型
"huggingface_hub[hf_xet]", # HF Hub 支持 + xet
"fastapi", # Web API 框架
"uvicorn[standard]", # ASGI 服务器
# 日文 G2P
"pyopenjtalk-plus", # 日语 G2P
# 英文 G2P
"nltk", # 英语 NLP 工具
# 中文 G2P
"pypinyin", # 中文拼音
"g2pM", # 中文 G2P 模型
"jieba_fast", # 中文分词
]
[project.urls]
Homepage = "https://github.com/High-Logic/Genie"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"genie_tts" = [
"Data/v2/Models/*",
"Data/v2/Keys/*",
"Data/v2ProPlus/Models/*",
"Data/v2ProPlus/Keys/*",
]