[project]
name = "yuppie-mcp-feishu"
version = "0.3.0"
description = "飞书MCP服务器 - 提供多维表格和电子表格的MCP工具"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "yuhuimr", email = "zhuyuhui434@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.25.0",
"lark-oapi>=1.5.2",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
keywords = ["mcp", "feishu", "lark", "bitable", "spreadsheet", "integration", "model-context-protocol"]
[project.urls]
Homepage = "https://github.com/ZYHB/yuppie-mcp-feishu"
Repository = "https://github.com/ZYHB/yuppie-mcp-feishu"
Issues = "https://github.com/ZYHB/yuppie-mcp-feishu/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
yuppie-mcp-feishu = "yuppie_mcp_feishu:main"
[tool.hatch.build.targets.wheel]
packages = ["src/yuppie_mcp_feishu"]
[tool.hatch.build]
exclude = [
"/test_env",
"/.venv",
"/dist",
"/build",
"/.*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = "src"
asyncio_mode = "auto"
addopts = "-ra -q"
markers = [
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
"slow: marks tests as slow running",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"twine>=6.2.0",
"black>=24.10.0",
"ruff>=0.9.2",
"mypy>=1.14.1",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[tool.black]
line-length = 88
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.ruff]
lint.select = ["E", "F", "I", "N"]
line-length = 88
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true