# ============================================================================= # .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