# Build artifacts
dist/*
build/
*.egg-info/
dist_old_releases/*

# Python cache
__pycache__/
*.py[cod]
*$py.class
*.so

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

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db

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

# Type checking
.mypy_cache/
.dmypy.json
dmypy.json

# Jupyter
.ipynb_checkpoints/

# uv
.uv-cache/

# Configuration files with secrets
.env
.env.local
.pypirc

# Logs
*.log

# Temporary files
*.tmp
*.temp
.temp_*

