llm-tools/mcps/dicom_mcp/pyproject.toml

30 lines
656 B
TOML
Raw Normal View History

2026-04-08 11:11:04 +00:00
[tool.poetry]
name = "dicom-mcp"
version = "0.1.0"
description = "DICOM MCP Server for Medical Imaging QA"
authors = ["Gregory Gauthier <gmgauthier@protonmail.com>"]
readme = "README.md"
packages = [{include = "dicom_mcp"}]
[tool.poetry.dependencies]
python = "^3.12,<4.0"
fastmcp = "^2.0.0"
numpy = ">=1.24"
Pillow = ">=10.0"
pydicom = "^3.0.1"
black = "^26.1.0"
ruff = "^0.15.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.23.0"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pytest_asyncio.*",
]