# QakeAPI Framework
# All core functionality uses only Python standard library
# This file contains only optional dependencies for development and running

# For running the server (optional)
uvicorn>=0.24.0

# For development (optional)
pytest>=7.0.0
pytest-asyncio>=0.21.0
pytest-cov>=4.0.0
httpx>=0.24.0
black>=23.0.0
isort>=5.12.0
mypy>=1.0.0

# Optional dependencies for JWT authentication
PyJWT>=2.0.0
cryptography>=3.4.8

# Optional dependencies for validation
pydantic>=2.0.0

# Optional dependencies for live reload
watchdog>=3.0.0

# Optional dependencies for load testing
aiohttp>=3.9.0

