From e4b5b6fb773471be0d9cfdeac9de9c34692dd512 Mon Sep 17 00:00:00 2001 From: esavary Date: Thu, 14 Mar 2024 17:30:29 +0100 Subject: [PATCH] fix: package path --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f69adf0..9032f83a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,7 @@ requires = ["hatchling", "hatch-vcs", "nipreps-versions"] build-backend = "hatchling.build" + [project] name = "eddymotion" description = "Pure python eddy-current and head-motion correction for dMRI, an extension of QSIprep's SHOREline algorithm (Cieslak, 2020) to multiple diffusion models." @@ -92,9 +93,9 @@ allow-direct-references = true exclude = [".git_archival.txt"] # No longer needed in sdist [tool.hatch.build.targets.wheel] -packages = ["eddymotion"] +packages = ["src/eddymotion"] # exclude = [ -# "sdcflows/tests/data", # Large test data directory +# "eddymotion/tests/data", # Large test data directory # ] @@ -162,7 +163,7 @@ omit = [ '*/tests/*', '*/__init__.py', '*/conftest.py', - 'eddymotion/_version.py' + 'src/eddymotion/_version.py' ] [tool.coverage.report]