# Git .git/ .gitignore # Python cache *.pyc __pycache__/ *.pyo *.pyd # Build artifacts build/ dist/ *.egg-info/ .eggs/ # Virtual environments .venv venv/ env/ ENV/ # IDE .vscode/ .idea/ *.swp # License (not needed for installation) LICENSE # Docker files (not needed in build context) Dockerfile .dockerignore # Local test files test_data/ *.mp3 *.flac *.wav *.txt *.log