-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 1.74 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
[project]
name = "mao-agents"
version = "0.1.0"
description = "Multi Agent Orchestration - A modern framework for orchestrating AI agents"
readme = "README.md"
authors = [
{ name = "Björn Bethge", email = "" }
]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.34.0",
"pydantic>=2.11.0",
"duckdb>=1.2.0",
"httpx>=0.28.0",
"python-dotenv>=1.1.0",
"langchain>=1.0,<2.0",
"langchain-core>=1.0,<2.0",
"langchain-openai>=1.0",
"langchain-anthropic>=1.0",
"langchain-community>=0.4.0",
"langchain-ollama>=0.3.0",
"langchain-mcp-adapters>=0.0.11",
"langsmith>=0.3.0",
"langgraph>=1.0,<2.0",
"typing-extensions>=4.13.0",
"tenacity>=8.5.0",
"langchain-huggingface>=1.2.1",
"sentence-transformers>=5.2.3",
# security: explicit minimum for vulnerable transitive dep
"pillow>=12.1.1",
]
[tool.uv]
python-preference = "only-managed"
python-downloads = "automatic"
link-mode = "copy"
compile-bytecode = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mao"]
[dependency-groups]
dev = [
"black>=25.1.0",
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"pytest-asyncio>=0.26.0",
"ruff>=0.11.9",
"isort>=6.0.1",
"flake8>=7.2.0",
]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
[[tool.mypy.overrides]]
module = "mao.agents"
ignore_errors = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"asyncio: mark a test as an asyncio test",
]
asyncio_default_fixture_loop_scope = "function"