From fc8cdd22230506fe6080f80d511df5f6be857e90 Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Fri, 20 Feb 2026 16:09:10 -0800 Subject: [PATCH] chore: add [project] section and dependencies to pyproject.toml --- pyproject.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1c0a283..e3f65b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,17 @@ +[project] +name = "bolt-python-custom-step-template" +version = "0.1.0" +requires-python = ">=3.11" +dependencies = [ + "slack-bolt==1.27.0", +] + +[project.optional-dependencies] +dev = [ + "pytest==9.0.2", + "ruff==0.14.14", +] + [tool.ruff] line-length = 125