From 2cb2341f483f6c918e70544e53cd63907db5a980 Mon Sep 17 00:00:00 2001 From: Niko Lindroos Date: Thu, 19 Dec 2024 16:22:45 +0200 Subject: [PATCH] chore: add a project section to pyproject.toml Add a project name, version number and python requirement to pyproject.toml. --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 18cf7293..65da6ea2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,7 @@ -# [project] -# requires-python = ">=3.9" +[project] +name = "kukkuu" +version="3.10.0" +requires-python = ">=3.11" [tool.ruff] extend-exclude = ["migrations", "snapshots"]