# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so

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

# Testing
.pytest_cache/
.coverage
coverage.xml
htmlcov/

# Linting
.ruff_cache/

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

# Distribution / packaging
MANIFEST
pip-wheel-metadata/
share/python-wheels/

# IDEs and editors
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# Environment variables
.env
.env.*

# Jupyter notebooks checkpoints
.ipynb_checkpoints/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Type checking
.pytype/
