From d9bf70970198c15b42e517ab599ab35f03c77d25 Mon Sep 17 00:00:00 2001 From: Derrick Chambers Date: Mon, 16 Dec 2024 17:59:03 -0800 Subject: [PATCH] switch build to hatchling (#5) --- pyproject.toml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 201dc61..ae4cdd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,20 +2,11 @@ # --- Build system configuration [build-system] -requires = [ "setuptools>=41",] -build-backend = "setuptools.build_meta" - -[tool.setuptools-git-versioning] -enabled = true - -[tool.setuptools.packages.find] -where = ["src"] - -[tool.setuptools] -include-package-data = true - -[tool.setuptools_scm] # this empty section enables the tool +requires = ["hatchling"] +build-backend = "hatchling.build" +[tool.hatch.build.targets.wheel] +packages = ["src/unidas.py"] # --- Project Metadata