-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "mcp-microsoft-auth"
version = "0.1.0"
description = "A simple MCP server demonstrating OAuth authentication in Microsft, with some mail functionalities"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Alessio Gioè" }]
license = { text = "MIT" }
dependencies = [
"anyio>=4.5",
"click>=8.1.0",
"httpx>=0.27",
"mcp",
"pydantic>=2.0",
"pydantic-settings>=2.5.2",
"sse-starlette>=1.6.1",
"uvicorn>=0.23.1; sys_platform != 'emscripten'",
"requests>=2.31.0"
]
[project.scripts]
mcp-simple-auth = "mcp_microsoft_auth.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mcp_microsoft_auth"]
[tool.uv]
dev-dependencies = ["pyright>=1.1.391", "pytest>=8.3.4", "ruff>=0.8.5"]