# Python bytecode and caches
__pycache__/
**/__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

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

# Build and packaging output
build/
dist/
*.egg-info/

# Trace local runtime data
.trace/

# TraceHub frontend dependencies and build output
tracehub/node_modules/
tracehub/dist/

# Environment files and local secrets
.env
.env.*
!.env.example
*.local
pypiToken
pypiToken.txt
.pypirc

# Editor and OS noise
.idea/
.vscode/
.DS_Store
Thumbs.db
