# Git
.git
.gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Environment variables
.env
.env.*
!.env.example

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
logs/

# Temporary files
tmp/
.tmp/
functional_test_outputs/

# Documentation
docs/
*.md
!README.md

# Tests (exclude from production image)
tests/
test_*.py
*_test.py

# Large unnecessary directories
htmlcov/
.pytest_cache/
.coverage*
.hypothesis/
.tox/
.nox/
.cache/
*.egg-info/
build/
dist/
wheels/
pip-wheel-metadata/
share/python-wheels/

# Development files
requirements.txt
requirements-dev.txt
setup.py
setup.cfg
tox.ini
