
# Prevents unwanted files from being committed to version control.

# Python bytecode
__pycache__/
*.pyc

# Virtual environments
.venv/
venv/
.venvs/

# Build artifacts
dist/
build/*
*.egg-info/
package-manager-*

# Editor files
.vscode/
.idea/

# OS noise
.DS_Store
Thumbs.db

# Nix cache to speed up tests
.nix/
.nix-dev-installed

# Ignore logs
*.log

result
