-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
74 lines (62 loc) · 1.91 KB
/
requirements.txt
File metadata and controls
74 lines (62 loc) · 1.91 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
67
68
69
70
71
72
73
74
# Fortified Trading System - Backend Requirements
# Combined dependencies for FastAPI application and trading engine
# ========================================
# Web Framework and Server
# ========================================
fastapi==0.109.0
uvicorn[standard]==0.27.0
python-multipart==0.0.6
# ========================================
# Authentication and Security
# ========================================
pyjwt==2.8.0
python-jose[cryptography]==3.3.0
email-validator==2.1.0
# ========================================
# Data Validation
# ========================================
pydantic==2.5.3
pydantic-settings==2.1.0
typing-extensions==4.9.0
# ========================================
# Data Processing
# ========================================
pandas==2.1.4
numpy==1.26.3
pytz>=2023.3
# ========================================
# HTTP Clients
# ========================================
httpx==0.26.0
requests==2.31.0
aiohttp>=3.9.0
# ========================================
# WebSocket Support
# ========================================
websockets>=12.0
# ========================================
# Market Data Providers
# ========================================
# databento==0.29.0 # DEPRECATED - Now using TastyTrade/DXFeed
pandas-market-calendars>=4.3.0
# ========================================
# Database and Caching
# ========================================
redis==5.0.1
# ========================================
# Environment and Configuration
# ========================================
python-dotenv==1.0.0
# ========================================
# Logging and Monitoring
# ========================================
python-json-logger==2.0.7
# ========================================
# Scheduling (for strategy consumers)
# ========================================
schedule>=1.2.0
# ========================================
# Testing
# ========================================
pytest==7.4.4
pytest-asyncio==0.23.3