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
tiantian.lei
committed
Sep 5, 2024
1 parent
4a83000
commit 0939d77
Showing
7 changed files
with
41 additions
and
103 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
File renamed without changes.
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="Coneme" \ | ||
org.opencontainers.image.description="A ChRIS plugin to compute network measures" | ||
|
||
ARG SRCDIR=/usr/local/src/app | ||
ARG SRCDIR=/usr/local/src/pl-coneme | ||
WORKDIR ${SRCDIR} | ||
|
||
COPY requirements.txt . | ||
|
@@ -19,4 +19,4 @@ RUN pip install ".[${extras_require}]" \ | |
&& cd / && rm -rf ${SRCDIR} | ||
WORKDIR / | ||
|
||
CMD ["commandname"] | ||
CMD ["coneme"] |
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
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='coneme', | ||
version=get_version('coneme.py'), | ||
description='A ChRIS plugin to compute network measures', | ||
author='FNNDSC', | ||
author_email='[email protected]', | ||
url='https://github.com/FNNDSC/python-chrisapp-template', | ||
py_modules=['app'], | ||
url='https://github.com/FNNDSC/pl-coneme', | ||
py_modules=['coneme'], | ||
install_requires=['chris_plugin'], | ||
license='MIT', | ||
entry_points={ | ||
'console_scripts': [ | ||
'commandname = app:main' | ||
'coneme = coneme:main' | ||
] | ||
}, | ||
classifiers=[ | ||
|
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