41 lines
367 B
Plaintext
41 lines
367 B
Plaintext
# 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
|
|
*.mp3
|
|
*.flac
|
|
*.wav
|
|
*.txt
|
|
*.log
|