[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fctr-okta-mcp-server"
version = "0.1.0"
description = "FastMCP-based Okta MCP Server"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.13.1",
"aiohttp>=3.9.0",
"httpx>=0.27.0",
"authlib>=1.3.0",
"cryptography>=41.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
fctr-okta-mcp = "fctr_okta_mcp.server:mcp.run"
[tool.hatch.build.targets.wheel]
packages = ["src/fctr_okta_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["src/fctr_okta_mcp"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]