-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 784 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 784 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
[project]
name = "backtester"
version = "0.1.0"
description = "Event-driven strategy backtesting engine."
requires-python = ">=3.11"
dependencies = [
"fastapi",
"httpx",
"langgraph>=0.2,<1",
"matplotlib",
"numpy",
"pandas",
"pydantic",
"python-dotenv>=1.0,<2",
"pyarrow",
"uvicorn",
"yfinance",
]
[project.optional-dependencies]
ai-langchain = [
"langchain-openai>=0.3,<1",
]
dev = [
"matplotlib",
"mypy",
"pandas-stubs",
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_decorators = false
[project.scripts]
backtester = "backtester.cli:main"