# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
*.whl
.Python
pip-log.txt
pip-delete-this-directory.txt
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
*.cover
.hypothesis/
.pytest_cache/
*.mo
*.pot

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

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

# Jupyter Notebook
.ipynb_checkpoints

# Ruff
.ruff_cache/

# MyPy
.mypy_cache/
.dmypy.json
dmypy.json

# Coverage reports
htmlcov/
.coverage
coverage.xml
*.lcov

# Documentation build
docs/_build/
docs/.vitepress/cache/
docs/.vitepress/dist/
site/

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

# Temporary files
*.tmp
*.bak
*.log

# OS specific
Thumbs.db
.DS_Store

# Build artifacts
*.dylib
*.dll
*.so
*.a
*.lib

# Package files
*.egg-info/

# Test artifacts
.pytest_cache/
.coverage
htmlcov/


