nexus-mcp/nexus-mcp/pyproject.toml
nathan cc00efc4c1 fix(ci): resolve test collection and async failures
- Add conftest.py to inject lib/ onto sys.path, fixing
  ModuleNotFoundError on identity test collection
- Add pytest-asyncio to CI install step and pyproject.toml
  test extras; set asyncio_mode=auto to resolve 31 async
  test failures flagged in session tech debt backlog
- All 35 tests now pass; 8 skipped (live API, expected)

Ref: Session Snapshot 2026-04-13 — "Pytest validation incomplete"
2026-04-13 13:22:00 -04:00

44 lines
865 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nexus-mcp"
version = "0.1.0"
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"