From c45a8aed4f1c2fe5ce7eb21d86e3043ceccf153a Mon Sep 17 00:00:00 2001 From: Darnell Granberry <40174000+DarnellGranberry@users.noreply.github.com> Date: Tue, 12 Nov 2024 17:50:00 -0500 Subject: [PATCH] Bumped version, added tqdm h5py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6777297..c0907de 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages name = 'topaz-em' -version = '0.2.5' +version = '0.3.0' description = 'Particle picking with positive-unlabeled CNNs' long_description = 'Particle picking software for single particle cryo-electron microscopy using convolutional neural networks and positive-unlabeled learning. Includes methods for micrograph denoising.' @@ -40,5 +40,7 @@ 'scipy>=0.17.0', 'pillow>=6.2.0', 'future', + 'tqdm', + 'h5py' ], )