From 2eabd66c030d7ee35af1d289d6a93b737a0084f1 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Mon, 22 Jan 2024 15:26:24 -0500 Subject: [PATCH] fixed case error --- Dockerfile | 4 ++-- dicom_dirSend.py => dicom_dirsend.py | 2 +- setup.py | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) rename dicom_dirSend.py => dicom_dirsend.py (99%) diff --git a/Dockerfile b/Dockerfile index 86af644..f5f4b9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL org.opencontainers.image.authors="FNNDSC " \ org.opencontainers.image.title="A ChRIS plugin to send DICOMS" \ org.opencontainers.image.description="A ChRIS plugin to send DICOMs to a remote PACS store" -ARG SRCDIR=/usr/local/src/pl-dicom_dirSend +ARG SRCDIR=/usr/local/src/pl-dicom_dirsend WORKDIR ${SRCDIR} COPY requirements.txt . @@ -21,4 +21,4 @@ RUN pip install ".[${extras_require}]" \ && cd / && rm -rf ${SRCDIR} WORKDIR / -CMD ["dicom_dirSend"] +CMD ["dicom_dirsend"] diff --git a/dicom_dirSend.py b/dicom_dirsend.py similarity index 99% rename from dicom_dirSend.py rename to dicom_dirsend.py index d296aba..3ad2df1 100644 --- a/dicom_dirSend.py +++ b/dicom_dirsend.py @@ -24,7 +24,7 @@ logger.opt(colors = True) logger.add(sys.stderr, format=logger_format) -__version__ = '1.0.2' +__version__ = '1.0.4' DISPLAY_TITLE = r""" _ _ _ _ _ _____ _ diff --git a/setup.py b/setup.py index e29b95b..9ecc65a 100644 --- a/setup.py +++ b/setup.py @@ -19,18 +19,18 @@ def get_version(rel_path: str) -> str: setup( - name='dicom_dirSend', - version=get_version('dicom_dirSend.py'), + name='dicom_dirsend', + version=get_version('dicom_dirsend.py'), description='A ChRIS plugin to send DICOMs to a remote PACS store', author='FNNDSC', author_email='dev@babyMRI.org', url='https://github.com/FNNDSC/pl-dicom_dir', - py_modules=['dicom_dirSend','jobController'], + py_modules=['dicom_dirsend','jobController'], install_requires=['chris_plugin'], license='MIT', entry_points={ 'console_scripts': [ - 'dicom_dirSend = dicom_dirSend:main' + 'dicom_dirsend = dicom_dirsend:main' ] }, classifiers=[