From ff60f7ed95d15c38985923dffe58ef052f75b801 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Wed, 25 Oct 2023 13:23:16 -0400 Subject: [PATCH] memory and version bump --- dicom_repack.py | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dicom_repack.py b/dicom_repack.py index 8b0ccb1..53b21dd 100644 --- a/dicom_repack.py +++ b/dicom_repack.py @@ -7,7 +7,7 @@ from chris_plugin import chris_plugin, PathMapper import pydicom as dicom import os -__version__ = '1.0.5' +__version__ = '1.0.6' DISPLAY_TITLE = r""" _ _ _ _ @@ -38,10 +38,10 @@ # documentation: https://fnndsc.github.io/chris_plugin/chris_plugin.html#chris_plugin @chris_plugin( parser=parser, - title='My ChRIS plugin', + title='A DICOM repack plugin', category='', # ref. https://chrisstore.co/plugins - min_memory_limit='2Gi', # supported units: Mi, Gi - min_cpu_limit='20000m', # millicores, e.g. "1000m" = 1 CPU core + min_memory_limit='3Gi', # supported units: Mi, Gi + min_cpu_limit='40000m', # millicores, e.g. "1000m" = 1 CPU core min_gpu_limit=0 # set min_gpu_limit=1 to enable GPU ) def main(options: Namespace, inputdir: Path, outputdir: Path): diff --git a/setup.py b/setup.py index cceb19d..ea9534f 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_version(rel_path: str) -> str: setup( name='dicom_repack', version=get_version('dicom_repack.py'), - description='A ChRIS plugin to do something awesome', + description='A ChRIS plugin to merge individual dicom slices into a single multiframe DICOM', author='FNNDSC', author_email='dev@babyMRI.org', url='https://github.com/FNNDSC/pl-dicom_re',