arcade-mcp/examples/apps/flask/pyproject.toml
Nate Barbettini 554f47cfd7
Spike FlaskActor and cleanup of BaseActor (#12)
Cleanup and refactor of actor abstraction and
related classes/methods


[ committed by @Spartee ]
[ Authored by @nbarbettini ]
2024-08-05 13:26:56 -07:00

19 lines
452 B
TOML

[tool.poetry]
name = "arcade_example_flask"
version = "0.1.0"
description = "Flask example app"
authors = ["Nate <nate@arcade-ai.com>"]
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.0.3"
arcade-ai = {path = "../../../arcade", develop = true}
arcade-arithmetic = {path = "../../math", develop = true}
[tool.poetry.dev-dependencies]
pytest = "^7.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"