pyproject.toml•857 B
[project]
name = "uns_mcp"
version = "0.1.6" # Set only non-dev versions to release
description = "MCP server implementation providing structured tools for interacting with the Unstructured API, managing sources, destinations, workflows, and jobs"
requires-python = ">=3.12"
readme = "README.md"
dependencies = [
"anthropic>=0.49.0",
"boto3>=1.37.27",
"firecrawl-py>=1.14.1",
"mcp[cli]>=1.13.1",
"python-dotenv>=1.0.1",
"unstructured-client>=0.32.1",
"pip",
]
[project.optional-dependencies]
dev=[
"pre-commit",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"notebook>=7.3.3",
"ipykernel>=6.29.5",
"jupyter>=1.1.1",
]
[project.scripts]
uns_mcp = "uns_mcp.server:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]