From 9c18b9705d90e9d57723412a1a09078556187ee8 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 11:53:41 +0100 Subject: [PATCH] fix entry point syntax for hatchling --- pyproject.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c951457..290e0cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,13 +25,8 @@ dependencies = [ "icecream", ] -[project.entry_points] -pytest11 = [ - "pytest_abra = pytest_abra.pytest_abra", -] - -[project.scripts] -abratest = "pytest_abra.cli:run" +[project.entry-points.pytest11] +pytest_abra = "pytest_abra.pytest_abra" [build-system] requires = ["hatchling"]