# Virtual environments
.venv/
venv/
env/
.env/

# Secrets and credentials
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.pfx
credentials.json
secrets.json
.secrets/
*.token

# Python bytecode / packaging
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
.eggs/
dist/
build/
wheelhouse/
*.whl
*.tar.gz

# Test / type / lint caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
coverage.xml
.hypothesis/
.cache/

# Local dropoutt / tool state
.dropoutt/
.code-review-graph/
artifacts/

# Local atlas source catalog (links only; never commit)
.atlas-sources/

# Fetched reference corpus and build scratch. Several gigabytes, and
# reproducible from tools/atlas_sources.py plus the manifest.
.atlas-cache/

# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*~

# Logs and temp
*.log
tmp/
temp/
*.tmp
