-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.29 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
[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"
[project]
name = "utter-mlx"
version = "0.1.0"
description = "Local text-to-speech CLI for Apple Silicon"
readme = "README.md"
authors = [{ name = "Aftaab Siddiqui" }]
license = "MIT"
license-files = ["LICENSE", "THIRD_PARTY_NOTICES.md"]
requires-python = ">=3.12,<3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"click>=8.3,<9",
"huggingface-hub>=1.0",
"mlx-audio==0.4.8",
"numpy>=1.26.4",
]
[project.scripts]
utter = "utter.cli:main"
[project.urls]
Homepage = "https://github.com/maskedsyntax/utter"
Repository = "https://github.com/maskedsyntax/utter"
Issues = "https://github.com/maskedsyntax/utter/issues"
[dependency-groups]
dev = [
"pytest>=8.4,<9",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: subprocess or real-runtime integration coverage",
"model: requires the installed Qwen model and performs real synthesis",
"download: downloads the complete pinned model into an isolated cache",
]