-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 867 Bytes
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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "voxcpmane"
version = "0.0.4"
description = "VoxCPM TTS model with Apple Neural Engine backend server"
readme = "README.md"
requires-python = ">=3.9,<3.13"
dependencies = [
"coremltools==8.3.0",
"einops",
"fastapi",
"inflect",
"numpy>2",
"sounddevice",
"soundfile",
"soxr",
"transformers",
"uvicorn",
"wetext",
"tqdm",
"aiofiles",
"huggingface_hub",
"ftfy>=6.3.1",
]
[project.urls]
Homepage = "https://github.com/0seba/VoxCPMANE"
[project.scripts]
voxcpmane-server = "voxcpmane.server:main"
[dependency-groups]
dev = [
"black>=25.9.0",
"build>=1.3.0",
"twine>=6.2.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
voxcpmane = ["frontend/index.html"]