pyproject.toml•2.32 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "authentik-diag-mcp"
version = "0.1.2"
description = "MCP server for Authentik API with diagnostic and read-only capabilities"
authors = [
{name = "Authentik MCP", email = "hello@goauthentik.io"}
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.24.0",
"pydantic>=2.0.0",
"typing-extensions>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"ruff>=0.1.2",
]
[project.urls]
Homepage = "https://github.com/goauthentik/authentik-diag-mcp"
Repository = "https://github.com/goauthentik/authentik-diag-mcp"
Documentation = "https://docs.goauthentik.io/"
[project.scripts]
authentik-diag-mcp = "authentik_diag_mcp.server:run"
[tool.hatch.build.targets.wheel]
packages = ["src/authentik_diag_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/pyproject.toml",
]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.ruff]
line-length = 120
target-version = "py310"
select = ["E", "F", "W", "I", "N", "UP", "YTT", "ANN", "S", "BLE", "FBT", "B", "A", "COM", "C4", "DTZ", "T10", "EM", "EXE", "FA", "ISC", "ICN", "G", "INP", "PIE", "T20", "PYI", "PT", "Q", "RSE", "RET", "SLF", "SLOT", "SIM", "TID", "TCH", "INT", "ARG", "PTH", "TD", "FIX", "ERA", "PD", "PGH", "PL", "TRY", "FLY", "NPY", "AIR", "PERF", "FURB", "LOG", "RUF"]
ignore = ["ANN101", "ANN102", "S101", "PLR0913", "PLR0912", "PLR0915", "PLR0911", "BLE001", "TRY400", "TRY401", "G004", "PLW0603", "EXE001"]
[tool.ruff.per-file-ignores]
"tests/*" = ["S101", "PLR2004", "ANN201", "ANN001"]
[dependency-groups]
dev = [
"mypy>=1.16.1",
"pytest>=8.4.1",
"ruff>=0.12.1",
]