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"]