47 lines
963 B
TOML
47 lines
963 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nexus-mcp"
|
|
version = "0.1.1"
|
|
description = "Nexus MCP — sharded enterprise integration server"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp>=1.2.0",
|
|
"httpx>=0.27.0",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
"ldap3>=2.9.1",
|
|
"msal>=1.28.0",
|
|
"schedule>=1.2.0",
|
|
"jinja2>=3.1.0",
|
|
"tabulate>=0.9.0",
|
|
"python-dateutil>=2.9.0",
|
|
"aiofiles>=24.1.0",
|
|
"tenacity>=8.2.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
nexus-mcp = "main:main"
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.0.0",
|
|
"pytest-cov>=5.0.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
markers = [
|
|
"integration: marks tests requiring live API credentials (skipped by default)",
|
|
]
|