This PR makes a few sweeping changes to the actor, cli, and overall structure of the project. - CLI commands skeleton - ``arcade run``, ``arcade show``, and ``arcade new`` - Working package mangement solution (``arcade_`` packages) - Actor approach for using frameworks other than FastAPI - Client for calling Engine within ``arcade/core`` - beginning of the config interface. --------- Co-authored-by: Nate Barbettini <nate@arcade-ai.com>
27 lines
597 B
TOML
27 lines
597 B
TOML
[tool.poetry]
|
|
name = "arcade_example_nate"
|
|
version = "0.1.0"
|
|
description = "Nate's testing package for Arcade"
|
|
authors = ["Nate <nate@arcade-ai.com>"]
|
|
|
|
|
|
[tool.poetry.metadata]
|
|
license = "MIT"
|
|
repository = "https://github.com/nate/arcade_example_nate"
|
|
homepage = "https://arcade-ai.com"
|
|
tools = ["arcade", "example", "nate"]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.110.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.4"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.arcade]
|
|
modules = ["arcade_example_nate.tools.arithmetic"]
|