pyproject.toml•1.73 kB
[project]
name = "azure-fhir-mcp-server"
version = "1.2.0"
description = "Azure AHDS FHIR MCP Server"
authors = [{ name = "Erik Howard", email = "erikhoward@pm.me" }]
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
keywords = [
"azure",
"ahds",
"fhir",
"healthcare",
"mcp",
"model-context-protocol",
"llm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fastmcp @ git+https://github.com/jlowin/fastmcp.git@main",
"python-dotenv>=1.1.0",
"requests>=2.32.3",
"uvicorn[standard]>=0.37.0",
"msal>=1.28.0",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "pytest-asyncio>=0.24.0", "pytest-cov>=5.0.0"]
[project.scripts]
azure-fhir-mcp-server = "azure_fhir_mcp_server.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/azure_fhir_mcp_server"]
[tool.hatch.metadata]
allow-direct-references = true
# Configure PyPI publishing
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[dependency-groups]
dev = ["pytest>=8.4.2", "pytest-asyncio>=1.2.0", "pytest-cov>=7.0.0"]
[project.urls]
"Homepage" = "https://github.com/erikhoward/azure-fhir-mcp-server"
"Bug Tracker" = "https://github.com/erikhoward/azure-fhir-mcp-server/issues"
"Documentation" = "https://github.com/erikhoward/azure-fhir-mcp-server/tree/main#azure-fhir-mcp-server-"