81 lines
753 B
Plaintext
81 lines
753 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Environment Variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Project Specific
|
|
output/
|
|
*.log
|
|
logs/
|
|
*.csv
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Excel Temporary Files
|
|
~$*.xlsx
|
|
~$*.xls
|
|
|
|
# Data Backups
|
|
*_backup.xlsx
|
|
merged_personas_backup.xlsx
|
|
|
|
# Verification Reports (moved to docs/)
|
|
production_verification_report.json
|
|
|
|
# OS Files
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Jupyter Notebooks
|
|
.ipynb_checkpoints/
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|