pyproject.toml•1.47 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torna-mcp"
version = "2.0.0"
description = "一个用于与 Torna 接口文档管理平台交互的 MCP(模型上下文协议)服务器"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "阿拉丁神灯", email = "li7hai26@gmail.com"}
]
keywords = ["mcp", "torna", "api-documentation", "claude", "llm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"httpx>=0.25.0",
"pydantic>=2.0.0",
"fastmcp>=0.3.0",
]
[project.urls]
"Homepage" = "https://github.com/li7hai26/torna-mcp"
"Bug Reports" = "https://github.com/li7hai26/torna-mcp/issues"
"Source" = "https://github.com/li7hai26/torna-mcp"
[project.scripts]
torna-mcp = "main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["tests*", "test_*", "complete_*", "deploy*", "validate*", "setup_*"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.txt", "*.xml", "*.json"]