32 lines
709 B
TOML
32 lines
709 B
TOML
[project]
|
|
name = "fast-mcp"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Your Name",email = "you@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
keywords = ["mcp", "ia", "llm"]
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
langchain = "^0.3.27"
|
|
langchain-openai = "^0.3.35"
|
|
mcp-use = "^1.3.10"
|
|
fastapi = "^0.116.1"
|
|
uvicorn = { version = "^0.35.0", extras = [ "standard" ] }
|
|
gunicorn = "^23.0.0"
|
|
pydantic = {extras = ["email"], version = "^2.11.7"}
|
|
strawberry-graphql = "^0.281.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|