80 lines
841 B
Plaintext
80 lines
841 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyc
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.ipynb_checkpoints/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.venv312/
|
|
.venv-*/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.spec
|
|
wheelhouse/
|
|
|
|
# PyInstaller temporary files
|
|
src/*_frozen.py
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.cache/
|
|
coverage/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.pyre/
|
|
.pytype/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.envrc
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Database
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Project specific
|
|
.wallet/
|
|
releases/*/
|
|
_toDelete/
|
|
.potentialfix.md
|
|
|
|
# PGP keys (except test data)
|
|
*.asc
|
|
!tests/data/recipient.asc
|
|
|
|
# Vendor cleanup (wrong architectures/test builds)
|
|
vendor/linux-aarch64/
|
|
vendor/macos-arm64-docker/
|
|
vendor/*-docker/
|
|
|
|
# Keep official vendor directories
|
|
# vendor/macos-arm64/
|
|
# vendor/linux-x86_64/
|
|
# vendor/PROVENANCE.md
|