# Rhythmic Stocks - Python Dependencies
# Install with: pip install -r requirements.txt
#
# Version: 1.3.0

# === CORE REQUIREMENTS ===
flask>=3.0.0
pandas>=2.0.0
numpy>=1.24.0
requests>=2.31.0

# === MARKOV / HMM ANALYSIS ===
hmmlearn>=0.3.0
scikit-learn>=1.3.0

# === OPTIONS DASHBOARD (IB Integration) ===
ib_insync>=0.9.86
nest_asyncio>=1.5.0

# === OPTIONS DASHBOARD (Schwab Integration — pending developer approval) ===
# Uncomment and install once Schwab developer access is granted:
# schwab-py>=1.0.0

# === INCLUDED WITH PYTHON (no install needed) ===
# sqlite3 - database
# json - data serialization
# csv - file handling
# datetime - date operations
# threading - background tasks
# logging - system logs
