# Docker ignore file for MFGarchon
# Exclude unnecessary files from Docker build context

# Git and version control
.git
.gitignore
.gitattributes
.gitmodules

# 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
MANIFEST

# Testing and coverage
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/

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

# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# Documentation builds
docs/_build/
site/

# CI/CD
.github/
.travis.yml
.gitlab-ci.yml
azure-pipelines.yml

# Archives and historical code
archive/
*.tar.gz
*.zip
*.7z

# Logs and temporary files
*.log
logs/
tmp/
temp/

# Jupyter notebook checkpoints
.ipynb_checkpoints/

# MyPy cache
.mypy_cache/
.dmypy.json
dmypy.json

# Security and secrets
.secrets
*.pem
*.key
*.crt
*.p12

# Local configuration files
local_config.py
config_local.py
.env.local

# Benchmarks and test data (exclude large files)
benchmarks/data/
test_data/
*.npy
*.npz

# Developer tools
.pre-commit-config.yaml
.editorconfig
.flake8

# Documentation source (keep only built docs)
docs/
# README.md - needed for package installation
