This commit is contained in:
2026-07-06 10:46:11 +03:00
parent 5ec3cb4ab4
commit 333a4c592d
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml ./
RUN pip install --no-cache-dir -e ".[http]"
COPY . .
CMD ["owa-mcp"]
+2 -2
View File
@@ -1,5 +1,5 @@
[project] [project]
name = "owa-mcp-server" name = "owa-mcp"
version = "0.1.0" version = "0.1.0"
description = "MCP server for OWA — email, calendar, directory, availability" description = "MCP server for OWA — email, calendar, directory, availability"
readme = "README.md" readme = "README.md"
@@ -23,7 +23,7 @@ Repository = "https://git.kosyrev.name/zoo/owa-mcp"
http = ["uvicorn>=0.30.0"] http = ["uvicorn>=0.30.0"]
[project.scripts] [project.scripts]
owa-mcp-server = "owa_mcp.server:main" owa-mcp = "owa_mcp.server:main"
[build-system] [build-system]
requires = ["setuptools>=68.0"] requires = ["setuptools>=68.0"]