pyproject.toml•1.59 kB
[project]
name = "mcp-recommender"
version = "0.1.0"
description = "A smart MCP server to recommend other MCPs based on your needs."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{ name = "CodeBuddy", email = "codebuddy@tencent.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
keywords = ["mcp", "model-context-protocol", "ai", "recommendations", "server"]
dependencies = [
"fastmcp>=0.4.0",
"requests>=2.31.0",
"aiohttp>=3.8.0",
"build>=1.3.0",
"twine>=6.1.0",
]
[project.urls]
Homepage = "https://github.com/your-username/mcp-recommender"
[project.scripts]
mcp-recommender = "mcp_recommender.__main__:main"
[project.optional-dependencies]
dev = [
"build>=1.3.0",
"twine>=6.1.0",
"pytest>=7.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mcp_recommender"]
[tool.hatch.build.targets.sdist]
packages = ["mcp_recommender"]
[tool.hatch.build]
include = [
"mcp_recommender/**/*.json",
]
# uv 配置
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"build>=1.3.0",
]