-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 842 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
[project]
name = "shoulda"
version = "0.1.0"
description = "Shoulda - AI agent for economic decision making"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"boto3>=1.34.0",
"httpx>=0.26.0",
"gradio>=4.19.0",
"pandas>=2.2.0",
"yfinance>=0.2.35",
"fredapi>=0.5.1",
"bedrock-agentcore[strands-agents]>=0.1.3",
"python-dotenv>=1.1.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.5.0",
"ipython>=8.24.0",
"bedrock-agentcore-starter-toolkit>=0.1.10",
"langfuse>=3.3.4",
"strands-agents[otel]>=1.8.0",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
norecursedirs = [
"infra/cdk.out",
]