# Development dependencies for the Python SDK
# These are additional dependencies for development, testing, and code quality

# Include base requirements
-r requirements.txt

# Testing framework
pytest>=7.0.0
pytest-asyncio>=0.21.0
pytest-cov>=4.0.0
pytest-mock>=3.10.0

# Code quality and formatting
black>=23.0.0
isort>=5.12.0
flake8>=5.0.0
mypy>=1.0.0
pre-commit>=3.0.0

# Documentation
sphinx>=6.0.0
sphinx-rtd-theme>=1.2.0
myst-parser>=1.0.0

# Development tools
ipython>=8.0.0
jupyter>=1.0.0
notebook>=6.5.0

# Performance profiling
memory-profiler>=0.60.0
line-profiler>=4.0.0

# Security scanning
bandit>=1.7.0
safety>=2.3.0

# Type checking
types-requests>=2.28.0

# Async testing
aioresponses>=0.7.0

# Mock and testing utilities
factory-boy>=3.2.0
freezegun>=1.2.0

# Configuration management
pydantic>=2.0.0
pydantic-settings>=2.0.0

# Logging and monitoring
structlog>=23.0.0
prometheus-client>=0.16.0
opentelemetry-api>=1.20.0
opentelemetry-sdk>=1.20.0

# JSON handling
ujson>=5.0.0

# HTTP client for testing
httpx>=0.24.0
aiohttp>=3.8.0

# Data validation
jsonschema>=4.17.0

# Environment management
python-dotenv>=1.0.0

# Build tools
build>=0.10.0
twine>=4.0.0
wheel>=0.40.0

# Version management
bump2version>=1.0.0

# Git hooks
pre-commit>=3.0.0

# Coverage reporting
coverage>=7.0.0
codecov>=2.1.0
