-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 768 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 768 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
36
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openapi2mcp"
version = "0.1.1"
description = "A tool to convert OpenAPI specs to MCP server with tools"
readme = "README.md"
authors = [
{name = "OpenAPI2MCP Contributors"}
]
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.103.0",
"uvicorn>=0.23.2",
"pyyaml>=6.0",
"pydantic>=2.3.0",
"openapi3-parser>=1.1.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"sse-starlette>=1.6.5",
"aiohttp>=3.11.18",
"prance>=25.4.8.0",
"fastmcp>=2.4.0",
]
[project.optional-dependencies]
dev = [
"black>=23.7.0",
"isort>=5.12.0",
"pytest>=7.4.0",
]
[project.scripts]
openapi2mcp = "openapi2mcp.cli:main"