Skip to content

Commit

Permalink
fix registeration error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Jan 22, 2024
1 parent 0e3d94d commit 42b3a76
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6'
__version__ = '1.0.8'

DISPLAY_TITLE = r"""
_ _ _ _ _ _____ _
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
chris_plugin==0.3.1
chris_plugin==0.2.1
pudb
loguru
pftag==1.2.22
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ def get_version(rel_path: str) -> str:
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',
url='https://github.com/FNNDSC/pl-dicom_dirSend',
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 42b3a76

Please sign in to comment.