Skip to content

Commit

Permalink
memory and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 25, 2023
1 parent d13bb90 commit ff60f7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dicom_repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
_ _ _ _
Expand Down Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
url='https://github.com/FNNDSC/pl-dicom_re',
Expand Down

0 comments on commit ff60f7e

Please sign in to comment.