feat(lzwcai-agile-db): 更新版本至0.4.4并优化数据库管理技能文档 - 更新版本号从0.4.2到0.4.4 - 优化API密钥权限管理说明,明确grant_api_key_permissions仅支持追加不支持撤销 - 新增add_sql_tool_to_datasource工具,提供一键创建SQL工具功能 - 调整create_sql_tool说明,强调需技能已存在 - 强化数据写操作安全机制,插入/更新/删除前必须预览并等待用户确认 - 完善导入数据功能说明,详细解释confirm_import_data参数传递方式 - 补充技能与工具管理流程,提供更清晰的操作指引 - 新增数字员工平台数据库技能配置指南文档 ```
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.3"
|
|
description = "Render styled quotation documents from user-supplied docx templates and structured data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { text = "MIT" }
|
|
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]
|
|
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*"]
|