[project]
name = "dp-mcp"
version = "0.1.0"
description = "Data Platform MCP Server for PostgreSQL and MinIO integration"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"fastmcp>=2.0.0",
"psycopg2-binary>=2.9.0",
"minio>=7.2.0",
"python-dotenv>=1.0.0",
"uvicorn>=0.24.0",
"fastapi>=0.104.0",
"pydantic>=2.5.0",
"pandas>=2.1.0",
"sqlalchemy>=2.0.0",
"aiohttp>=3.8.0",
"sseclient-py>=1.7.0",
"httpx>=0.25.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.7.0",
"flake8>=6.0.0"
]
ai = [
"anthropic>=0.21.0",
"openai>=1.0.0"
]
all = [
"dp-mcp[dev,ai]"
]
[project.scripts]
dp-mcp = "dp_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]