From 8fe286784f0bcd1208972cff64ae8e1df967a776 Mon Sep 17 00:00:00 2001 From: Michael Brooks Date: Fri, 20 Feb 2026 15:07:46 -0800 Subject: [PATCH] feat: update pyproject.toml with project section --- pyproject.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b800495..65dd3d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,17 @@ +[project] +name = "bolt-python-starter-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.9.4", +] + [tool.ruff] line-length = 125 exclude = [".venv", "venv"]