-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.54 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "planagent"
version = "0.1.0"
description = "AI-powered multi-agent platform for evidence-driven scenario simulation & strategic decision-making."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.116,<1.0",
"uvicorn[standard]>=0.35,<1.0",
"sqlalchemy>=2.0,<3.0",
"greenlet>=3.1,<4.0",
"aiosqlite>=0.21,<1.0",
"alembic>=1.16,<2.0",
"pydantic>=2.11,<3.0",
"pydantic-settings>=2.10,<3.0",
"httpx>=0.28,<1.0",
"openai>=2.28,<3.0",
"anthropic>=0.52,<1.0",
"redis>=6.2,<7.0",
"psycopg[binary]>=3.2,<4.0",
"pgvector>=0.3,<1.0",
"minio>=7.2,<8.0",
"bcrypt>=4.2,<5.0",
"PyJWT>=2.10,<3.0",
"PyYAML>=6.0,<7.0",
"markdown2>=2.5,<3.0",
"jinja2>=3.1,<4.0",
"matplotlib>=3.9,<4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4,<9.0",
"pytest-asyncio>=1.1,<2.0",
"ruff>=0.12,<1.0",
"mypy>=1.15,<2.0",
"types-PyYAML>=6.0,<7.0",
]
[project.scripts]
planagent-api = "planagent.main:run"
planagent-worker = "planagent.worker_cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
warn_return_any = false
warn_unused_configs = true
no_implicit_optional = false
disable_error_code = ["attr-defined", "union-attr", "arg-type", "misc"]