Skip to content

Commit

Permalink
fixed case error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Jan 22, 2024
1 parent f481fc9 commit 2eabd66
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL org.opencontainers.image.authors="FNNDSC <[email protected]>" \
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 .
Expand All @@ -21,4 +21,4 @@ RUN pip install ".[${extras_require}]" \
&& cd / && rm -rf ${SRCDIR}
WORKDIR /

CMD ["dicom_dirSend"]
CMD ["dicom_dirsend"]
2 changes: 1 addition & 1 deletion dicom_dirSend.py → dicom_dirsend.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
_ _ _ _ _ _____ _
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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=[
Expand Down

0 comments on commit 2eabd66

Please sign in to comment.