35 lines
839 B
TOML
35 lines
839 B
TOML
[project]
|
|
name = "exchange-mcp-server"
|
|
version = "1.0.1"
|
|
description = "MCP server for Exchange / OWA - email, calendar, directory, availability"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
keywords = ["mcp", "exchange", "owa", "outlook", "email", "calendar"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"requests>=2.28.0",
|
|
"sse-starlette>=2.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.kosyrev.name/zoo/owa-mcp"
|
|
Repository = "https://git.kosyrev.name/zoo/owa-mcp"
|
|
|
|
[project.optional-dependencies]
|
|
http = ["uvicorn>=0.30.0"]
|
|
|
|
[project.scripts]
|
|
exchange-mcp-server = "exchange_mcp.server:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["exchange_mcp*"]
|