-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 1.06 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-linux-diag-server"
version = "0.1.0"
description = "Milestone 7 Linux diagnostics MCP server with authenticated HTTP transport, elicitation-gated process control, sampling-assisted diagnostics, proc/sys roots enforcement, tools, resources, prompts, and a lecture chat client."
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.12"
authors = [
{ name = "Alon Fliess" },
]
dependencies = [
"mcp[cli]>=1.27.0,<2.0",
]
[project.optional-dependencies]
llm = [
"azure-identity>=1.17.0,<2.0",
"openai>=1.75.0,<2.0",
]
[project.scripts]
mcp-linux-diag-server = "mcp_linux_diag_server.__main__:main"
mcp-linux-diag-chat = "mcp_linux_diag_server.client:main"
[project.urls]
Homepage = "https://github.com/alonf/MCPPythonDemo"
Repository = "https://github.com/alonf/MCPPythonDemo"
Documentation = "https://github.com/alonf/MCPPythonDemo/tree/main/docs"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]