# HIPAA Compliance Auditor - Python Dependencies
# Install with: pip install -r requirements.txt

# Core NLP library
spacy>=3.7.0

# spaCy models (install separately):
# python -m spacy download en_core_web_trf  # Best accuracy (transformer-based)
# python -m spacy download en_core_web_lg   # Large model, good balance
# python -m spacy download en_core_web_md   # Medium model, faster

# Enhanced PII detection (optional but recommended)
presidio-analyzer>=2.2.0
presidio-anonymizer>=2.2.0

# Advanced regex support
regex>=2023.0.0

# Data validation
dacite>=1.8.0

# Testing
pytest>=7.4.0
pytest-cov>=4.1.0
