40 lines
458 B
Plaintext
40 lines
458 B
Plaintext
# Python bytecode and test/tool caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Local environments and packaging output
|
|
.venv/
|
|
venv/
|
|
env/
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Local configuration, credentials, and runtime data
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.cowork_local/
|
|
ms365_token_cache.bin
|
|
*.log
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Editors and operating systems
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*~
|