From 3042f33d93d42b5323bf11eaa39de6f2b2b0b6a2 Mon Sep 17 00:00:00 2001 From: Iva Momcheva Date: Mon, 12 Feb 2024 15:37:45 +0100 Subject: [PATCH] Reorg pyproject.toml --- pyproject.toml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 078603a..6398f24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,15 @@ requires-python = ">=3.9" dependencies = [ "numpy", ] +[project.urls] +"Homepage" = "https://github.com/mpi-astronomy/mpia-python-template" + +[build-system] +requires = [ + "setuptools>=60", + "wheel", +] +build-backend = "setuptools.build_meta" [project.optional-dependencies] docs = [ @@ -30,18 +39,6 @@ test = [ "pytest-cov", ] -[project.urls] -"Bug Tracker" = "https://github.com/mpi-astronomy/snowblind/issues" -"Source Code" = "https://github.com/mpi-astronomy/snowblind" - - -[build-system] -requires = [ - "setuptools>=60", - "wheel", -] -build-backend = "setuptools.build_meta" - [tool.setuptools.packages.find] where = ["src"]