Files
nginx-proxy-manager-mcp/pyproject.toml
2025-12-24 21:23:15 +00:00

44 lines
797 B
TOML

[project]
name = "npm-mcp"
version = "0.0.2"
description = "MCP server for Nginx Proxy Manager"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"mcp>=1.0.0",
"starlette>=0.40.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-httpx>=0.30",
"ruff>=0.8.0",
]
[project.scripts]
npm-mcp = "npm_mcp.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/npm_mcp"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]