# Git
.git
.gitignore

# Python
__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 Environment
.env
.venv
env/
venv/
ENV/

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

# Testing
.coverage
htmlcov/
.pytest_cache/
.tox/
.nox/

# Logs
*.log
logs/

# Database
*.db
*.sqlite3

# Documentation
docs/_build/
site/

# Distribution
*.tar.gz
*.zip

# Local development
.env.local
.env.development.local
.env.test.local
.env.production.local

# Streamlit
.streamlit/

# Pre-commit
.pre-commit-config.yaml

# Docker
Dockerfile
docker-compose.yml
.dockerignore
