42 lines
862 B
TOML
42 lines
862 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "mcp-privileged"
|
|
version = "0.1.0"
|
|
description = "Remote MCP service for privileged access via CyberArk CCP"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp[server]>=1.0",
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.30",
|
|
"httpx>=0.27",
|
|
"cryptography>=42",
|
|
"asyncssh>=2.14",
|
|
"pypsrp>=0.9",
|
|
"asyncpg>=0.29",
|
|
"aiomysql>=0.2",
|
|
"pyodbc>=5.0",
|
|
"pydantic-settings>=2",
|
|
"structlog>=24",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-asyncio>=0.23",
|
|
"httpx>=0.27", # TestClient
|
|
"pytest-cov>=5",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcp-privileged = "mcp_privileged.main:run"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcp_privileged"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|