# Healthcare Claude Skills - Development Dependencies

# Include production dependencies
-r requirements.txt

# Testing
pytest>=7.4.0
pytest-cov>=4.1.0
pytest-mock>=3.12.0
coverage>=7.3.0

# Code quality
black>=23.12.0          # Code formatting
flake8>=7.0.0           # Linting
pylint>=3.0.0           # Advanced linting
mypy>=1.8.0             # Type checking
isort>=5.13.0           # Import sorting

# Security scanning
bandit>=1.7.5           # Security issue scanner
safety>=2.3.0           # Dependency vulnerability checker

# Documentation
sphinx>=7.2.0           # Documentation generator
sphinx-rtd-theme>=2.0.0 # Read the Docs theme

# Development tools
ipython>=8.18.0         # Enhanced Python shell
ipdb>=0.13.13           # Debugger
pre-commit>=3.6.0       # Git hooks framework

# Performance profiling
line-profiler>=4.1.0
memory-profiler>=0.61.0

# Data validation
great-expectations>=0.18.0  # Advanced data validation
