blob: 589f6c25841fdd656f03307426f933252ec8c3d2 (
plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# =============================================================================
# .gitignore — tts-audiobook-generator
# =============================================================================
# --- Runtime artifacts (input/output/voices contents stay out, dirs stay in) --
chunks/
cache/
debug/
input/*
output/*
voices/*
!input/.gitkeep
!output/.gitkeep
!voices/.gitkeep
# Generated books & media
*.epub
input/*.txt
*.m4b
*.mp3
*.flac
*.ogg
# --- Logs ---------------------------------------------------------------------
logs/
*.log
# --- Backend checkouts cloned by the setup wizards ----------------------------
# (backends.audiocpp / .faster)
/app/audio.cpp/
/app/faster-qwen3-tts/
# Managed Python environments created by audiobook.py (envs.py): the app
# env (envs/tts) and one per pip-installed backend (envs/qwen for qwen-tts,
# envs/faster for faster-qwen3-tts).
/app/envs/
# --- Python bytecode ----------------------------------------------------------
__pycache__/
*.py[codz]
*$py.class
*.so
# --- Build / packaging --------------------------------------------------------
build/
dist/
*.egg-info/
*.egg
# --- Test & coverage ----------------------------------------------------------
.pytest_cache/
.hypothesis/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
*.cover
# --- Tool caches (linters / type checkers) ------------------------------------
.ruff_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/
.pyre/
.cache
# --- Virtual environments -----------------------------------------------------
.venv/
venv/
env/
ENV/
# --- Editors / tools ----------------------------------------------------------
.opencode/
.history/
*.swp
tempCodeRunnerFile.py
# .vscode/
# .idea/
# --- OS junk ------------------------------------------------------------------
.DS_Store
._*
Thumbs.db
desktop.ini
|