From b38743b493180b0034854a7c8a1ad80f67294775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Sun, 22 Dec 2024 15:01:02 -0800 Subject: [PATCH] Add tool.hatch.build.targets.sdist and wheel --- CHANGELOG.md | 1 + pyproject.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81966dd..f4d599f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ ### ⚙️ Engineering * Updated management of dev dependencies. +* Add sections `tool.hatch.build.targets.sdist` and `tool.hatch.build.wheel` to `pyproject.toml`. ## 0.5.0 - December 21, 2024 diff --git a/pyproject.toml b/pyproject.toml index 5ff3632..037c8ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -128,3 +128,6 @@ build-backend = "hatchling.build" [tool.hatch.build.targets.sdist] only-include = ["src/lvmopstools"] + +[tool.hatch.build.targets.wheel] +packages = ["src/lvmopstools"]