From a1d0ae0a8b15655bf3217120f9fc4fc39e50b99f Mon Sep 17 00:00:00 2001 From: johnathanchiu Date: Mon, 7 Oct 2024 12:26:06 -0400 Subject: [PATCH] update version and add excludes properly --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 954406c..8ecae03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "xyseg" -version = "0.0.1" +version = "0.0.2" description = "Recursive Segmentation Algorithm" readme = "README.md" requires-python =">=3.9" @@ -23,7 +23,10 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] -include = ["xyseg/**/*.py", "LICENSE", "README.md"] +packages = ["xyseg"] + +[tool.hatch.build.targets.sdist] +exclude = ["*.json", "examples/**", "environment.yml", "*.ipynb"] [project.urls] Homepage = "https://github.com/johnathanchiu/recursive-segmentation"