From 9cd3643777184f703e9089b66a71a8692921b42a Mon Sep 17 00:00:00 2001 From: Vince Reuter Date: Wed, 20 Mar 2024 03:23:09 +0100 Subject: [PATCH] separate project for looptrace-related --- pyproject.toml | 4 ++++ spotfishing/__init__.py | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ded3ab1..9021005 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,10 @@ classifiers = [ "Topic :: Scientific/Engineering :: Bio-Informatics", "Typing :: Typed", ] +packages = [ + { include = "spotfishing" }, + { include = "spotfishing_looptrace" } +] include = ["examples"] [tool.poetry.dependencies] diff --git a/spotfishing/__init__.py b/spotfishing/__init__.py index f331819..f02b8ae 100644 --- a/spotfishing/__init__.py +++ b/spotfishing/__init__.py @@ -5,14 +5,12 @@ from .detection_result import DetectionResult from .detectors import detect_spots_dog, detect_spots_int from .dog_transform import DifferenceOfGaussiansTransformation -from spotfishing_looptrace import DifferenceOfGaussiansSpecificationForLooptrace __author__ = "Vince Reuter" __credits__ = ["Vince Reuter", "Kai Sandoval Beckwith"] __all__ = [ "ROI_MEAN_INTENSITY_KEY", - "DifferenceOfGaussiansSpecificationForLooptrace", "DifferenceOfGaussiansTransformation", "DimensionalityError", "DetectionResult",