-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 872 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 872 Bytes
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
# Tooling and dependency declaration only. This project is NEVER installed into
# the venv -- an editable install writes build artifacts into the plugin
# directory, which Omarchy watches, reloading the shell on every bootstrap.
# The daemon runs from source via PYTHONPATH. See ARCHITECTURE.md.
[project]
name = "omarchy-mcp"
version = "0.1.0"
description = "MCP server exposing Omarchy to local agents"
requires-python = ">=3.11"
license = "Apache-2.0"
dependencies = [
# 2.x renamed FastMCP to MCPServer and moved the module. 1.x examples do
# not apply; see ROADMAP.md finding F1.
"mcp>=2,<3",
"uvicorn>=0.30",
]
[dependency-groups]
dev = [
"pytest>=8",
"anyio>=4",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
markers = ["anyio: async test, run on the asyncio backend"]
[tool.ruff]
line-length = 100
src = ["src"]