From e0b801e1c51dc89c8433d199d4f58fb8ac77d2e9 Mon Sep 17 00:00:00 2001 From: derrick chambers Date: Mon, 16 Dec 2024 17:52:59 -0800 Subject: [PATCH] switch build to hatchling --- 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