-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.14 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
[project]
name = "portfolio-agents"
version = "0.1.0"
description = "Async portfolio agents built on the OpenAI Agents SDK and Interactive Brokers"
readme = "README.md"
authors = [
{ name = "mdeclerk", email = "Matthias.de.Clerk@gmx.de" }
]
requires-python = ">=3.14"
dependencies = [
"duckdb>=1.4.2",
"ib-async>=2.1.0",
"openai-agents>=0.18.2",
"pandas>=3.0.3",
"pydantic>=2.10",
"python-dotenv>=1.2.2",
"rich>=15.0.0",
]
[project.scripts]
portfolio-agents = "portfolio_agents.main:main"
[build-system]
requires = ["uv_build>=0.11.28,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"inspect-ai>=0.3.248",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"ruff>=0.15.22",
]
[tool.ruff]
line-length = 100
target-version = "py314"
src = ["src", "tests", "evals"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"ASYNC", # flake8-async
"RUF", # ruff-specific
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]