-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.28 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
[project]
name = "model-context-shell"
version = "0.1.0"
description = "A shell interface for coordinating MCP tool calls using Unix-style pipelines"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastmcp>=2.12.4",
"headson>=0.10.0",
"httpx>=0.27.0",
]
[dependency-groups]
dev = [
"pyright>=1.1.391",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"pytest-timeout>=2.3.1",
"ruff>=0.14.6",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::RuntimeWarning:_pytest.unraisableexception",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = [
"E501", # line length handled by formatter
"SIM117", # nested with statements - not always combinable with async tuple unpacking
"B904", # raise from - would require invasive changes
]
[tool.ruff.format]
quote-style = "double"
[tool.coverage.run]
source = ["main", "shell_engine", "mcp_client", "toolhive_client", "models"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = false
[tool.pyright]
include = ["main.py", "mcp_client.py", "shell_engine.py", "toolhive_client.py", "models.py", "tests"]
pythonVersion = "3.13"
typeCheckingMode = "standard"