nexus-mcp/archive/Identity/pyproject.toml
nathan 479df6bd8a chore: archive legacy Identity, Workday, and Intune folders
- Move Identity/, Workday/, Intune/ to archive/ (superseded by nexus-mcp shards)
- Move 'Local Setup.md' to archive/ (superseded by nexus-mcp/Local-Setup.md)
- Add archive/README.md explaining migration and preserved content
- Clean repository structure: only nexus-mcp, documentation, and .github remain active

All legacy functionality migrated to nexus-mcp sharded architecture.
Archived folders preserved for reference and historical context.

Refs: SESSION_SNAPSHOT_2026-04-13.md
2026-04-13 09:38:42 -04:00

26 lines
559 B
TOML

[project]
name = "identity-mcp-server"
version = "0.1.0"
description = "Identity MCP server baseline for phased rollout"
readme = "implementation-guide.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.2.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
identity-mcp = "identity_mcp_server:main"
[tool.setuptools]
py-modules = ["identity_mcp_server", "identity_backend", "ad_adapter"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"