-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1001 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1001 Bytes
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
[project]
name = "ai-quantitative-trading"
version = "0.2.0"
description = "AI-powered multi-agent quantitative trading system using GPT-4o"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Existing
"matplotlib>=3.10.1",
"munch>=4.0.0",
"pandas>=2.2.3",
"tenacity>=9.0.0",
"trading-ig>=0.0.22",
# Config
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
# LLM
"openai>=1.40.0",
# Data validation
"pydantic>=2.7.0",
# Redis
"redis>=5.0.0",
# Terminal UI
"rich>=13.7.0",
"textual>=0.85.0",
# ML (LSTM - technical intern only)
"torch>=2.3.0",
"scikit-learn>=1.5.0",
# Data sources
"pandas-datareader>=0.10.0",
"httpx>=0.27.0",
"feedparser>=6.0.0",
# Utilities
"numpy>=1.26.0",
"python-dotenv>=1.0.0",
]
[project.scripts]
start = "trade.start:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/trade"]