generated from FNNDSC/python-chrisapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eac06cc
commit 420ecb2
Showing
4 changed files
with
31 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
FROM docker.io/python:3.12.1-slim-bookworm | ||
|
||
LABEL org.opencontainers.image.authors="FNNDSC <[email protected]>" \ | ||
org.opencontainers.image.title="ChRIS Plugin Title" \ | ||
org.opencontainers.image.description="A ChRIS plugin that..." | ||
org.opencontainers.image.title="Datetree" \ | ||
org.opencontainers.image.description="A file directory script that takes in a date range and output directory and creates a nested dir structure" | ||
|
||
ARG SRCDIR=/usr/local/src/app | ||
ARG SRCDIR=/usr/local/src/Documents | ||
WORKDIR ${SRCDIR} | ||
|
||
COPY requirements.txt . | ||
|
@@ -19,4 +19,4 @@ RUN pip install ".[${extras_require}]" \ | |
&& cd / && rm -rf ${SRCDIR} | ||
WORKDIR / | ||
|
||
CMD ["commandname"] | ||
CMD ["datetree"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,18 +19,18 @@ def get_version(rel_path: str) -> str: | |
|
||
|
||
setup( | ||
name='chris-plugin-template', | ||
version=get_version('app.py'), | ||
description='A ChRIS DS plugin template', | ||
name='Documents', | ||
version=get_version('datetree.py'), | ||
description='A file directory script that takes in a date range and output directory and creates a nested dir structure', | ||
author='FNNDSC', | ||
author_email='[email protected]', | ||
url='https://github.com/FNNDSC/python-chrisapp-template', | ||
py_modules=['app'], | ||
url='https://github.com/FNNDSC/pl-datetree', | ||
py_modules=['datetree'], | ||
install_requires=['chris_plugin'], | ||
license='MIT', | ||
entry_points={ | ||
'console_scripts': [ | ||
'commandname = app:main' | ||
'datetree = datetree:main' | ||
] | ||
}, | ||
classifiers=[ | ||
|