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

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

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.py,cover
.hypothesis/

# Ruff cache
.ruff_cache/

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

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

# Documentation builds
docs/_build/
.readthedocs.yml

# Environment variables
.env
.env.local
.env.*.local

# Logs
*.log

# Temporary files
.tmp/
temp/