-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.38 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
[project]
name = "agentquant"
version = "0.2.0"
description = "Autonomous quantitative trading research platform with LLM regime-aware strategy optimization."
authors = [{ name = "Avaya Aggarwal", email = "aggarwal.avaya27@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"pandas>=2.0,<3.0",
"numpy>=1.26,<2.0",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"pydantic>=2.0,<3.0",
"yfinance>=0.2.28",
"scipy>=1.12",
"streamlit>=1.39",
"plotly>=5.17",
"pyarrow>=16.0",
"tabulate>=0.9",
"statsmodels>=0.14",
"requests>=2.31",
]
[project.optional-dependencies]
llm = [
"google-generativeai>=0.8",
"langchain>=0.2",
"langchain-google-genai>=1.0",
"langchain-core>=0.1",
"langgraph>=0.0.69",
"openai>=1.0",
]
data = [
"fredapi>=0.5",
"alpaca-trade-api>=3.0",
]
backtest = [
"vectorbt>=0.26",
"empyrical>=0.5",
]
regime = [
"hmmlearn>=0.3",
"scikit-learn>=1.5",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.10",
]
[project.scripts]
run-agent = "src.agent.runner:main"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]