# Ignore files that shouldn't be included in the Docker build context

# Python cache and build artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
test_*.py
*_test.py
tests/

# Documentation
docs/

# Local configuration files
.env.local
config.local.*

# Development scripts
scripts/
dev/

# Docker files (avoid recursion)
docker-compose*.yml

# Build artifacts
*.tar.gz
*.whl
