feat: basics #1

Merged
albnnc merged 8 commits from itchy-gayal into main 2026-07-06 07:55:40 +00:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 333a4c592d - Show all commits
+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]
name = "owa-mcp-server"
name = "owa-mcp"
version = "0.1.0"
description = "MCP server for OWA — email, calendar, directory, availability"
readme = "README.md"
@@ -23,7 +23,7 @@ Repository = "https://git.kosyrev.name/zoo/owa-mcp"
http = ["uvicorn>=0.30.0"]
[project.scripts]
owa-mcp-server = "owa_mcp.server:main"
owa-mcp = "owa_mcp.server:main"
[build-system]
requires = ["setuptools>=68.0"]