fix: resolve CI/CD issues - all tests pass locally

This commit is contained in:
Developer
2026-02-05 13:32:25 +00:00
parent 155bc36ded
commit 1da735b646
30 changed files with 3982 additions and 605 deletions

View File

@@ -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]
@@ -48,7 +53,7 @@ python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["project_scaffold_cli"]
source = ["src/mcp_server_cli"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]