pyproject.toml•1.05 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcpify"
version = "0.1.0"
description = "MCP Development Knowledge Base - Learn to build production MCPs"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Isaac", email = "isaac@example.com"}
]
keywords = ["mcp", "ai", "development", "knowledge-base"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastmcp>=2.0.0",
"pydantic>=2.0.0",
"gitpython>=3.0.0"
]
[project.urls]
"Homepage" = "https://github.com/yourusername/mcpify"
"Bug Tracker" = "https://github.com/yourusername/mcpify/issues"
[project.scripts]
mcpify = "mcpify_server:main"