-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathrequirements.txt
More file actions
66 lines (49 loc) · 1.11 KB
/
requirements.txt
File metadata and controls
66 lines (49 loc) · 1.11 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Core HTTP and async libraries
httpx==0.27.0
aiohttp==3.9.1
requests==2.31.0
# Database
aiosqlite==0.19.0
# Crypto libraries for API authentication
cryptography==42.0.0
pycryptodome==3.20.0
# OpenRouter/OpenAI client
openai==1.51.2
anthropic
# Data handling and analysis - updated for Python 3.13 compatibility
pandas>=2.0.0
numpy>=1.24.0
scipy>=1.12.0 # For portfolio optimization (Python 3.13 compatible)
# Environment variables
python-dotenv==1.0.0
# Pydantic and data validation
# Using a version compatible with Python 3.13
pydantic==2.8.2
pydantic-settings
# Logging and monitoring
structlog==23.2.0
# Type hints - compatible with openai requirements
typing-extensions>=4.11
# Date/time handling
python-dateutil==2.8.2
pytz==2023.3
# Rate limiting
ratelimit==2.2.1
# Configuration management
pyyaml==6.0.1
# Error tracking and monitoring
sentry-sdk==1.39.2
# xAI Grok API client
xai_sdk>=1.0.0
# WebSocket streaming
websockets>=12.0
# News & sentiment pipeline
feedparser>=6.0.0
# Testing (optional)
pytest==7.4.3
pytest-asyncio==0.21.1
# Development tools
black==23.12.1
isort==5.13.2
uvicorn
json-repair