- 将技能版本从0.2.0升级至0.4.2 - 工具数量从33个扩展至57个,新增数据源管理、AI训练、库表关联配置等功能 - 新增MQTT字段关联同步模块(8个工具)和库表关联配置(3个工具) - 添加重要的契约提示和安全确认原则,包括target默认值、alter_table操作限制等 - 修正工具参数说明,如execute_sql的executableSql改为sql,参数结构优化 - 增强安全机制,明确危险操作的用户确认流程和目标资源选择规则 - 更新README.md中的工具数量统计和功能描述
41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "lzwcai-mcpskills-generate-reports"
|
|
version = "0.1.0"
|
|
description = "Render styled quotation documents from user-supplied docx templates and structured data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
keywords = ["docx", "quotation", "report", "template", "jinja2"]
|
|
authors = [
|
|
{ name = "LzwCai", email = "lzwcai@example.com" },
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"docxtpl>=0.16.0",
|
|
"python-docx>=1.1.0",
|
|
"Jinja2>=3.1.0",
|
|
"mcp>=1.0.0",
|
|
"anyio>=4.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
generate-report = "lzwcai_mcpskills_generate_reports.cli:main"
|
|
lzwcai-mcpskills-generate-reports = "lzwcai_mcpskills_generate_reports.server:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/lzwcai/lzwcai-mcpskills-generate-reports"
|
|
Repository = "https://github.com/lzwcai/lzwcai-mcpskills-generate-reports"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["lzwcai_mcpskills_generate_reports*"]
|
|
exclude = ["tests*", "_out*", "templates*", "samples*"]
|