-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[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 = ["."]