-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.38 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
[build-system]
requires = ["setuptools>=75.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "the-oracle"
version = "1.0.1"
description = "The Oracle is a local desktop app for rendering dialogue (monologue or multi-speaker casts) to FLAC with the Chatterbox TTS model, on CPU (PyTorch) or a Vulkan GPU backend."
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = { text = "MIT" }
authors = [
{ name = "OpenAI Codex" }
]
dependencies = [
"markdown-it-py==3.0.0",
"mutagen==1.47.0",
"numpy>=1.26",
"PySide6==6.8.2.1",
"sounddevice>=0.4.6,<0.6",
"scikit-learn==1.6.1",
"scipy==1.15.2",
"soundfile==0.13.1",
"symspellpy==6.9.0",
]
[project.optional-dependencies]
ml = [
"deepmultilingualpunctuation==1.0.1",
"language-tool-python==2.9.4",
"transformers==4.46.3",
]
chatterbox = [
"chatterbox-tts==0.1.6",
"torch==2.6.0",
"torchaudio==2.6.0",
"torchvision==0.21.0",
]
dev = [
"pytest==8.3.5",
"pytest-xdist==3.6.1",
]
[project.scripts]
the-oracle = "the_oracle.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
the_oracle = ["text_repair/data/*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"slow: long-running tests (GUI, integration, or model-heavy) that the fast suite skips",
]