-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
38 lines (32 loc) · 1.95 KB
/
Copy pathrequirements.txt
File metadata and controls
38 lines (32 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# =============================================================================
# STOCK RADAR - Dependencies
# =============================================================================
# -----------------------------------------------------------------------------
# Core
# -----------------------------------------------------------------------------
python-dotenv>=1.0.0 # Environment variable management
requests>=2.31.0 # HTTP requests
numpy>=1.20.0 # Numerical operations
# -----------------------------------------------------------------------------
# Stock Data
# -----------------------------------------------------------------------------
yfinance>=0.2.0 # Yahoo Finance API (free stock data - fallback)
twelvedata>=1.2.0 # Twelve Data API (30+ years history, real-time)
pandas>=2.0.0 # Data manipulation (required by yfinance)
# -----------------------------------------------------------------------------
# AI / LLM
# -----------------------------------------------------------------------------
litellm>=1.0.0 # Unified LLM interface (Groq, Gemini, Ollama)
# -----------------------------------------------------------------------------
# Database
# -----------------------------------------------------------------------------
supabase>=2.0.0 # Supabase client for PostgreSQL + pgvector
# -----------------------------------------------------------------------------
# Notifications
# -----------------------------------------------------------------------------
slack-sdk>=3.0.0 # Slack notifications
# -----------------------------------------------------------------------------
# Optional - for advanced features
# -----------------------------------------------------------------------------
# ta>=0.10.0 # Technical analysis indicators (alternative)
# finnhub-python>=2.4.0 # Finnhub API for news (if using API key)