From cf270dee35a2a77755a2e772c835399f821e96cd Mon Sep 17 00:00:00 2001 From: Rolf Harkes Date: Tue, 10 Dec 2024 12:23:06 +0100 Subject: [PATCH] Update setup.py Remove build-in functions, and replace skimage and sklearn with scikit-image and scikit-learn. Package won't install with python 3.8 otherwise. --- pip package/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pip package/setup.py b/pip package/setup.py index cb824b8..70025c5 100644 --- a/pip package/setup.py +++ b/pip package/setup.py @@ -15,7 +15,7 @@ author_email='murphy@cmu.edu', license='MIT', packages=['CellSegmentationEvaluator'], - install_requires=['numpy', 're', 'xml', 'xmltodict', 'pandas', 'math', 'pathlib', 'typing', 'json', 'pint', 'scipy', 'skimage', 'sklearn', 'tifffile', 'warnings', 'aicsimageio'], + install_requires=['numpy', 'xmltodict', 'pandas', 'pint', 'scipy', 'scikit-image', 'scikit-learn', 'tifffile', 'aicsimageio'], classifiers=[ 'Development Status :: 5 - Production/Stable',