From 8a0783fb1bde9c9cd5122399e20638eefec85740 Mon Sep 17 00:00:00 2001 From: rht Date: Wed, 26 Jun 2024 20:47:43 -0400 Subject: [PATCH] Use Hatchling instead of setuptools --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b706e93..2f1e080 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["setuptools"] -build-backend = "setuptools.build_meta" +requires = ["hatchling"] +build-backend = "hatchling.build" [project] name = "mesa_frames" @@ -9,7 +9,7 @@ description = "An extension to the Mesa framework which uses pandas/Polars DataF authors = [ { name = "Adam Amer" }, ] -license = { text = "MIT License" } +license = { text = "MIT" } -[tool.setuptools.packages.find] -where = ["mesa_frames"] +[tool.hatch.build.targets.wheel] +packages = ["mesa_frames"]