feat: basics

This commit was merged in pull request #1.
This commit is contained in:
2026-07-06 07:55:40 +00:00
parent 8b3e116062
commit fc976cd6ef
20 changed files with 5800 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
[project]
name = "owa-mcp"
version = "0.1.0"
description = "MCP server for OWA — email, calendar, directory, availability"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
keywords = ["mcp", "owa", "outlook", "exchange", "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]
owa-mcp = "owa_mcp.server:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["owa_mcp*"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]