-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (75 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
91 lines (75 loc) · 1.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "problemsolver-ai"
version = "0.1.0"
description = "Centralized Processing Engine — recursive problem decomposition and solution assembly"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10" # Production targets 3.12+, 3.10 for dev compatibility
authors = [
{ name = "JB", email = "jonathan_barth@ymail.com" },
]
dependencies = [
# Core
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
# Database
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
"alembic>=1.14.0",
"psycopg2-binary>=2.9.0",
"greenlet>=3.1.0",
# LangGraph / LangChain
"langgraph>=0.3.0",
"langgraph-checkpoint-postgres>=2.0.0",
"langchain-core>=0.3.0",
"langchain-anthropic>=0.3.0",
"langchain-openai>=0.3.0",
# WebSocket
"websockets>=14.0",
# Utilities
"httpx>=0.28.0",
"python-dotenv>=1.0.0",
"structlog>=24.4.0",
"uuid7>=0.1.0",
# Agent Toolkit — Math & Computation
"sympy>=1.13.0",
"numpy>=2.0.0",
"scipy>=1.14.0",
"pint>=0.24",
# Agent Toolkit — Data Analysis
"pandas>=2.2.0",
"scikit-learn>=1.6.0",
"tabulate>=0.9.0",
# Agent Toolkit — Web Research
"tavily-python>=0.5.0",
# Agent Toolkit — Document Generation
"jinja2>=3.1.0",
"jsonschema>=4.23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"ruff>=0.8.0",
"mypy>=1.13.0",
"httpx>=0.28.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["backend"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "RUF"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.12"
strict = true