Files
agent-framework/python/shared_tasks.toml
T
Eduard van Valkenburg 8b80a03fbb Python: updated docstrings of all _files (#1107)
* updated docstrings of all _files

* fix mypy

* fixed codeblocks in workflows and some other files

---------

Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
2025-10-02 16:18:58 +00:00

11 lines
311 B
TOML

[tool.poe.tasks]
fmt = "ruff format"
format.ref = "fmt"
lint = "ruff check"
pyright = "pyright"
publish = "uv publish"
clean-dist = "rm -rf dist"
build-package = "python -m flit build"
move-dist = "sh -c 'mkdir -p ../../dist && mv dist/* ../../dist/ 2>/dev/null || true'"
build = ["build-package", "move-dist"]