pyproject.toml•2.52 kB
[build-system]
<<<<<<< HEAD
requires = ["setuptools>=45", "wheel"]
=======
requires = ["setuptools>=61.0", "wheel"]
>>>>>>> 55eee9a1cddd378865fe2faccee51a0c205a87ea
build-backend = "setuptools.build_meta"
[project]
name = "torna-mcp"
<<<<<<< HEAD
version = "0.1.3-beta"
description = "A MCP (Model Context Protocol) server for interacting with Torna API documentation platform"
readme = "README.md"
license = {text = "MIT"}
authors = [
{ name = "阿拉丁神灯", email = "li7hai26@gmail.com" }
]
keywords = ["mcp", "torna", "api-documentation", "claude", "llm", "protocol"]
classifiers = [
"Development Status :: 4 - Beta",
=======
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",
>>>>>>> 55eee9a1cddd378865fe2faccee51a0c205a87ea
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
<<<<<<< HEAD
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
dependencies = [
"torna-sdk>=0.1.2-beta",
"fastmcp>=0.3.0",
]
[project.urls]
Homepage = "https://github.com/li7hai26/torna-mcp"
Repository = "https://github.com/li7hai26/torna-mcp.git"
Issues = "https://github.com/li7hai26/torna-mcp/issues"
[project.scripts]
torna-mcp = "torna_mcp.main:main"
=======
"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"]
>>>>>>> 55eee9a1cddd378865fe2faccee51a0c205a87ea