-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 948 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 948 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "mcpauth"
version = "0.2.0b1"
description = "Plug-and-play auth for Python MCP servers."
authors = [{ name = "Silverhand Inc.", email = "contact@silverhand.io" }]
readme = "README.md"
requires-python = "<4.0,>=3.10"
license = "MIT"
keywords = [
"authentication",
"authorization",
"mcp",
"modelcontextprotocol",
"oauth2",
"openid-connect",
"oidc",
]
dependencies = [
"pydantic>=2.11.3",
"pyjwt[crypto]>=2.9.0",
"requests>=2.32.3",
"starlette>=0.46.2",
]
[project.urls]
homepage = "https://mcp-auth.dev"
repository = "https://github.com/mcp-auth/python"
documentation = "https://mcp-auth.dev/docs"
[dependency-groups]
dev = [
"black>=24.8.0",
"mcp[cli]>=1.12.3",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=6.1.1",
"responses>=0.25.7",
"uvicorn>=0.34.2",
]
[tool.coverage.run]
branch = true
source = ["mcpauth"]
[tool.setuptools.packages.find]
where = ["."]
include = ["mcpauth*"]