- Start a Slack toolkit with a few tools - Update Google auth - Show user's email in `arcade chat`
18 lines
624 B
TOML
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"
|