pyproject.toml•1.27 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "servicenow-mcp-server"
version = "0.1.0"
description = "A highly customizable MCP server for ServiceNow API integration"
readme = "README.md"
license = {text = "MIT"}
authors = [
{ name = "asklokesh", email = "asklokesh@example.com" }
]
requires-python = ">=3.9"
dependencies = [
"mcp>=1.1.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"click>=8.1.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
]
[project.scripts]
servicenow-mcp = "servicenow_mcp.server:main"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "PT", "SIM", "RUF"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
exclude = ["venv/", "build/", "dist/"]
[[tool.mypy.overrides]]
module = "mcp.*"
ignore_errors = true
[tool.hatch.build.targets.wheel]
packages = ["src/servicenow_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"