pyproject.toml•584 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "didlogic_mcp"
version = "1.0.4"
description = "DIDLogic MCP server"
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
authors = [
{ name = "Konstantin Tumalevich", email = "userad@gmail.com" }
]
dependencies = [
"mcp>=1.16.0",
"httpx>=0.28.1",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
]
[project.scripts]
didlogic_mcp = "didlogic_mcp:server"
[tool.mypy]
disable_error_code = ["import-untyped"]