-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (81 loc) · 1.97 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
[project]
name = "morphic-agent"
version = "0.6.3"
description = "Self-Evolving AI Agent Framework — Mission Control for Intelligence"
requires-python = ">=3.12"
readme = "CLAUDE.md"
license = {text = "MIT"}
dependencies = [
# Agent Framework
"langgraph>=0.3",
"litellm>=1.50",
"instructor>=1.7",
# Database
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.30",
"aiosqlite>=0.20",
"pgvector>=0.3",
"alembic>=1.14",
"neo4j>=5.25",
# Memory
"mem0ai>=0.1",
# API
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"pydantic-settings>=2.7",
"httpx>=0.28",
# Task Queue
"celery[redis]>=5.4",
# LAEE - Local Autonomous Execution Engine (v0.4)
"playwright>=1.49",
"watchdog>=6.0",
"apscheduler>=3.10",
"psutil>=6.1",
# CLI
"typer>=0.15",
"rich>=13.9",
# Semantic Memory
"numpy>=1.26",
# MCP - Model Context Protocol
"mcp[cli]>=1.25,<2",
# Utilities
"python-dotenv>=1.0",
"orjson>=3.10",
"structlog>=24.4",
"ddgs>=9.11.4",
]
[project.optional-dependencies]
adk = [
"google-adk>=1.0",
]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-cov>=6.0",
"ruff>=0.8",
"mypy>=1.13",
]
[project.scripts]
morphic = "interface.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["domain", "application", "infrastructure", "interface", "shared"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM"]
ignore = ["UP042"] # Keep (str, Enum) pattern for Pydantic strict=True compatibility
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"ollama: tests requiring a running Ollama instance",
"openhands: tests requiring OpenHands Docker container",
"live: tests that hit live LLM APIs (cost-bounded, opt-in via -m live)",
]
[tool.mypy]
python_version = "3.12"
strict = true