* Renamed `arcade_arithmetic` to `arcade_math` * Deleted `arcade_github` toolkit for the next release. This will be reintroduced later. * Added 5 tools to `arcade_x` toolkit - post_tweet - delete_tweet_by_id - search_recent_tweets_by_username - search_recent_tweets_by_keywords - lookup_single_user_by_username
16 lines
416 B
TOML
16 lines
416 B
TOML
[tool.poetry]
|
|
name = "arcade_example_flask"
|
|
version = "0.1.0"
|
|
description = "Flask example app with Arcade"
|
|
authors = ["Nate <nate@arcade-ai.com>"]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
flask = "^3.0.3"
|
|
arcade-ai = {path = "../../arcade", develop = true}
|
|
arcade-math = {path = "../../toolkits/math", develop = true}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|