-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.09 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-cli"
version = "0.1.0"
description = "A cli for the Model Context Provider"
requires-python = ">=3.11"
readme = "README.md"
authors = [
{ name = "Chris Hay", email = "[email protected]" }
]
keywords = ["llm", "openai", "claude", "mcp", "cli"]
license = {text = "MIT"}
dependencies = [
"anyio>=4.6.2.post1",
"asyncio>=3.4.3",
"chuk-mcp>=0.1.7",
"chuk-virtual-fs>=0.1.6",
"ollama>=0.4.2",
"openai>=1.55.3",
"pandas>=2.2.3",
"prompt-toolkit>=3.0.50",
"python-dotenv>=1.0.1",
"requests>=2.32.3", # Re-enable if you actually want to install from PyPI
"rich>=13.9.4",
"typer>=0.15.2",
]
[project.scripts]
mcp-cli = "mcp_cli.main:app"
mcp-llm = "mcp_cli.llm.__main__:main"
[project.optional-dependencies]
wasm = []
dev = [
"numpy>=2.2.3",
"pytest-asyncio>=0.25.3",
"asyncio>=3.4.3"
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pydantic>=2.10.2",
"pytest-asyncio>=0.25.3",
]