From 6fb542e34543f09f9e7e29bdc92c8f908cf232f2 Mon Sep 17 00:00:00 2001 From: Pieter Roggemans Date: Wed, 4 Sep 2024 09:40:47 +0200 Subject: [PATCH] Move project.url in pyproject.toml to projects.urls section --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 38fa276..d723075 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ name = "exactextract" description = "Fast and accurate raster zonal statistics" license.file = "LICENSE" -url = "https://github.com/isciences/exactextract" authors = [ { "name" = "Daniel Baston" } ] @@ -21,6 +20,9 @@ classifiers = [ dynamic = ["version"] readme = "README.md" +[project.urls] +repository = "https://github.com/isciences/exactextract" + [build-system] requires=["scikit-build-core", "pybind11"] build-backend="scikit_build_core.build"