-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 2.01 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "click-to-mcp"
version = "0.5.0"
description = "Auto-wrap any Click/typer CLI as an MCP (Model Context Protocol) server — with auto-discovery, stdio, HTTP+SSE, and Streamable HTTP transport"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "DevForge", email = "dev@devforge.dev" },
]
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
]
keywords = ["mcp", "click", "cli", "model-context-protocol", "ai", "discovery", "sse", "http", "agent"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
http = [
"starlette>=0.27",
"uvicorn>=0.20",
"sse-starlette>=1.0",
]
dev = [
"pytest>=7.0",
"httpx>=0.24",
"ruff>=0.9.0,<1.0",
]
[project.urls]
Homepage = "https://github.com/Coding-Dev-Tools/click-to-mcp"
Repository = "https://github.com/Coding-Dev-Tools/click-to-mcp"
Changelog = "https://github.com/Coding-Dev-Tools/click-to-mcp/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/Coding-Dev-Tools/click-to-mcp/issues"
[project.scripts]
click-to-mcp = "click_to_mcp.cli:main"
click-to-mcp-demo = "click_to_mcp.demo:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
click_to_mcp = ["py.typed"]
[tool.setuptools.packages.find]
include = ["click_to_mcp*"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["click_to_mcp"]