From 0310fa0d9848caa703d849c46c7c889164fcbc57 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 13:35:41 +0000 Subject: [PATCH] fix: resolve CI/CD issues - all tests pass locally --- pyproject.toml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 72505a6..dc4aeec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,16 +3,16 @@ requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "project-scaffold-cli" +name = "mcp-server-cli" version = "1.0.0" -description = "A CLI tool that generates standardized project scaffolding for multiple languages" +description = "A CLI tool that creates a local Model Context Protocol (MCP) server for developers" readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} authors = [ - {name = "Project Scaffold CLI", email = "dev@example.com"} + {name = "MCP Server CLI", email = "dev@example.com"} ] -keywords = ["cli", "project", "scaffold", "generator", "template"] +keywords = ["cli", "mcp", "model-context-protocol", "ai", "assistant"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", @@ -27,10 +27,15 @@ classifiers = [ ] dependencies = [ - "click>=8.0", - "jinja2>=3.0", + "fastapi>=0.104.0", + "click>=8.1.0", + "pydantic>=2.5.0", "pyyaml>=6.0", - "click-completion>=0.2", + "aiofiles>=23.2.0", + "httpx>=0.25.0", + "gitpython>=3.1.0", + "uvicorn>=0.24.0", + "sse-starlette>=1.6.0", ] [project.optional-dependencies]