pyproject.toml•1.1 kB
[project]
name = "mock-mcp-server"
version = "0.1.1"
description = "A mock MCP server for testing"
readme = "README.md"
requires-python = ">=3.10"
authors = [
    { name = "DiscreteTom", email = "discrete_tom@outlook.com" }
]
license = { text = "MIT" }
keywords = ["mcp", "server", "mock", "testing"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "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",
]
dependencies = [
    "fastmcp>=2.13.0.2",
    "typer>=0.20.0",
]
[project.scripts]
mock-mcp-server = "mock_mcp_server.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
  "/.github",
  "/tests",
  "/.pre-commit-config.yaml",
  "/.python-version", 
  "/pyrightconfig.json",
  "/uv.lock"
]
[dependency-groups]
dev = [
    "pre-commit>=4.3.0",
]