arcade-mcp/examples/fastapi/pyproject.toml
Nate Barbettini acba912816
Start Slack toolkit (#17)
- Start a Slack toolkit with a few tools
- Update Google auth
- Show user's email in `arcade chat`
2024-08-22 16:12:42 -07:00

18 lines
624 B
TOML

[tool.poetry]
name = "arcade_example_fastapi"
version = "0.1.0"
description = "FastAPI example app with Arcade"
authors = ["Nate Barbettini <nate@arcade-ai.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.112.0"
arcade-ai = {path = "../../arcade", develop = true}
arcade_arithmetic = {path = "../../toolkits/math", develop = true}
arcade_gmail = {path = "../../toolkits/gmail", develop = true}
arcade_github = {path = "../../toolkits/github", develop = true}
arcade_slack = {path = "../../toolkits/slack", develop = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"