- 将params字段替换为workflow[extraContext]字段用于接收工作流额外上下文参数 - 更新描述信息,明确字段用途为接收工作流额外上下文参数(如环境变量等) - 修改处理逻辑,提取workflow[extraContext]字段并合并到inputs中 - 当workflow[extraContext]为字典类型时合并到inputs,否则保留为独立字段 - 更新日志信息中的字段名称引用 chore(pyproject): 更新版本号至0.1.7
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-workflow-to-mcp"
|
|
version = "0.1.7"
|
|
description = "MCP server for executing business SQL queries with dynamic tool generation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "lzwcai", email = "your-email@example.com"},
|
|
]
|
|
keywords = ["mcp", "sql", "executor", "server"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.28.1",
|
|
"mcp[cli]>=1.10.1",
|
|
"pypinyin>=0.53.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-workflow-to-mcp = "lzwcai_workflow_to_mcp.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_workflow_to_mcp"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"lzwcai_workflow_to_mcp/businessQueries.json" = "lzwcai_workflow_to_mcp/businessQueries.json"
|