# ═══════════════════════════════════════════════════════════════════════════════
#  ARGUS — .gitignore
# ═══════════════════════════════════════════════════════════════════════════════

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
pip-log.txt
pip-delete-this-directory.txt

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
desktop.ini

# Logs
*.log
logs/

# Tests
.pytest_cache/
.coverage
htmlcov/
.tox/

# Temporary files
*.tmp
*.temp
*.bak

# Memory system - working memory (volatile, not persisted)
memory/working/*
!memory/working/.gitkeep

# Build artifacts (PyPI packaging)
dist/
build/
*.egg-info/
*.egg
