forked from IBM/mcp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 1.83 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
92
93
94
95
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-cli"
version = "0.11"
description = "A cli for the Model Context Provider"
requires-python = ">=3.11"
readme = "README.md"
authors = [
{ name = "Chris Hay", email = "chrishayuk@somejunkmailbox.com" }
]
keywords = ["llm", "openai", "claude", "mcp", "cli"]
license = {text = "MIT"}
dependencies = [
"asyncio>=3.4.3",
"chuk-llm>=0.14.3",
"chuk-mcp-client-oauth>=0.3.5",
"chuk-term>=0.1.3",
"chuk-tool-processor>=0.11.2",
"cryptography>=44.0.0",
"fast-json>=0.3.2",
"httpx>=0.27.0",
"jsonschema>=4.25.1",
"keyring>=25.0.0",
"orjson>=3.11.4",
"prompt-toolkit>=3.0.50",
"python-dotenv>=1.0.1",
"rich>=13.9.4",
"typer>=0.15.2",
]
[project.optional-dependencies]
vault = [
"hvac>=2.0.0"
]
wasm = []
dev = [
"numpy>=2.2.3",
"pytest-asyncio>=0.25.3",
"asyncio>=3.4.3"
]
[project.scripts]
mcp-cli = "mcp_cli.main:app"
mcp-llm = "mcp_cli.llm.__main__:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["mcp_cli*"]
[tool.setuptools.package-data]
mcp_cli = ["server_config.json"]
[dependency-groups]
dev = [
"colorama>=0.4.6",
"mypy>=1.13.0",
"pydantic>=2.10.2",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.2.1",
"pytest>=8.3.4",
"ruff>=0.12.10",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
exclude = [
"^.venv/",
"^build/",
"^dist/",
]
# Ignore errors in site-packages (external libraries)
[[tool.mypy.overrides]]
module = [
"mlx.*",
"transformers.*",
"langchain.*",
"langchain_core.*",
"langchain_text_splitters.*",
]
ignore_errors = true