# Bitcoin Trading Bot - Kraken Integration
# Core dependencies
aiohttp>=3.9.0
aiofiles>=23.2.1
pydantic>=2.5.0
pydantic-settings>=2.1.0
python-dotenv>=1.0.0

# Kraken API
ccxt>=4.2.0  # Unified crypto exchange library (includes Kraken)

# Database
aiosqlite>=0.19.0
sqlalchemy>=2.0.0

# Async & scheduling
asyncio-throttle>=1.0.0
apscheduler>=3.10.0

# Cryptography (for Kraken API signing)
cryptography>=41.0.0
hvac>=2.0.0

# Utilities
python-dateutil>=2.8.0
requests>=2.31.0
websockets>=12.0

# Logging
structlog>=23.2.0

# Markov Chain & Math (for state-based trading)
numpy>=1.24.0
pandas>=2.0.0

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