-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.02 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "moss-tts-nano"
version = "0.1.0"
description = "Open-source realtime multilingual tiny TTS from OpenMOSS."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "OpenMOSS Team" },
]
dependencies = [
"numpy>=1.24",
"fastapi>=0.110.0",
"python-multipart>=0.0.9",
"sentencepiece>=0.1.99",
"torch==2.7.0",
"torchaudio==2.7.0",
"transformers==4.57.1",
"uvicorn>=0.29.0",
"onnxruntime>=1.20.0",
]
[project.urls]
Homepage = "https://github.com/OpenMOSS/MOSS-TTS-Nano"
Repository = "https://github.com/OpenMOSS/MOSS-TTS-Nano"
Documentation = "https://studio.mosi.cn/docs/moss-tts-nano"
[project.scripts]
moss-tts-nano = "moss_tts_nano.cli:main"
[tool.setuptools]
packages = ["moss_tts_nano"]
py-modules = [
"app",
"app_onnx",
"infer",
"infer_onnx",
"moss_tts_nano_runtime",
"onnx_tts_runtime",
"ort_cpu_runtime",
"text_normalization_pipeline",
"tts_robust_normalizer_single_script",
]