22 lines
435 B
TOML
22 lines
435 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-lark-mcp"
|
|
version = "0.1.10"
|
|
description = "Lark MCP server"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.6.0",
|
|
"openpyxl>=3.1.2",
|
|
"python-dotenv>=0.21.0",
|
|
"requests>=2.25.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-lark-mcp = "lzwcai_lark_mcp.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_lark_mcp"]
|