-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.08 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
[project]
name = "man-mcp-server"
version = "0.1.0"
description = "MCP server for accessing Linux man pages using FastMCP"
license = { text = "MIT" }
keywords = ["mcp", "man-pages", "documentation", "linux", "fastmcp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: System :: Systems Administration",
]
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Guy Rutenberg" },
]
[project.urls]
Homepage = "https://github.com/guyru/man-mcp-server"
Repository = "https://github.com/guyru/man-mcp-server"
Issues = "https://github.com/guyru/man-mcp-server/issues"
dependencies = [
"mcp>=1.0.0",
]
[project.optional-dependencies]
dev = [
"mcp[cli]",
# Consider adding: pytest, black, ruff for future development
]