pyproject.toml•562 B
[project]
name = "csv-mcp-server"
version = "0.1.0"
description = "Model Context Protocol server for CSV file management (stdio transport only)"
authors = [
{name = "User", email = "user@example.com"}
]
dependencies = [
"mcp>=1.0.0",
"pandas>=2.0.0",
"fastmcp>=0.5.0",
"pydantic>=2.0.0",
]
requires-python = ">=3.10"
[project.scripts]
csv-mcp-server = "csv_mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]