
# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
lib/
lib64/
wheels/

# =============================================================================
# Virtual environment
# =============================================================================
cli_venv/
.venv/
venv/
env/
ENV/

# =============================================================================
# Environment variables — never commit secrets
# =============================================================================
.env
.env.local
*.env
.env.bak

# =============================================================================
# psamvault session file — contains access token, refresh token, kdf_salt
# This file lives at ~/.psamvault/session.json on the user's machine.
# If it ever ends up inside the project folder, never commit it.
# =============================================================================
.psamvault/
session.json
*.session.json

# =============================================================================
# Packaging and distribution
# If you ever publish psamvault to PyPI, these get generated automatically
# =============================================================================
dist/
build/
*.egg-info/
MANIFEST

# =============================================================================
# IDE and editors
# =============================================================================

# VSCode
.vscode/
*.code-workspace

# PyCharm / JetBrains
.idea/
*.iml
*.iws
*.ipr

# Vim / Neovim
*.swp
*.swo
*~

# Emacs
\#*\#
.\#*

# =============================================================================
# OS generated files
# =============================================================================

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk

# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes

# Linux
*~

# =============================================================================
# Testing
# =============================================================================
.pytest_cache/
.coverage
coverage.xml
htmlcov/
.tox/
.nox/
nosetests.xml
test-results/

# =============================================================================
# Type checking
# =============================================================================
.mypy_cache/
.dmypy.json
dmypy.json
.pytype/

# =============================================================================
# Logs
# =============================================================================
*.log
logs/

# =============================================================================
# Local files/folders
# =============================================================================
deploy.ps1
TODOS.md