-
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
6f1a97f
commit d9cc650
Showing
7 changed files
with
2,250 additions
and
408 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM ghcr.io/biosimulators/bio-check-worker:latest | ||
|
||
SHELL ["/usr/bin/env", "bash", "-c"] | ||
|
||
ENV JUPYTER_TOKEN='' \ | ||
JUPYTER_ENABLE_LAB=yes \ | ||
GRANT_SUDO=yes | ||
|
||
EXPOSE 8888 | ||
|
||
WORKDIR /app | ||
|
||
COPY dockerfile-assets/requirements.image.txt /tmp/requirements.image.txt | ||
|
||
RUN source ~/.bashrc \ | ||
&& mkdir -p /opt/notebooks \ | ||
&& poetry run pip install -r /tmp/requirements.image.txt | ||
|
||
CMD ["bash", "-c", "source ~/.bashrc && poetry run jupyter lab --ip='*' --port=8888 --allow-root --no-browser"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
requests-toolbelt | ||
seaborn | ||
toml | ||
process-bigraph | ||
jupyterlab |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,38 +1,44 @@ | ||
# This project configuration should relate only to the high level notebook api (as primary deps). | ||
[tool.poetry] | ||
name = "bio-compose" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
description = "Create, execute, and introspect reproducible composite simulations of dynamic biological systems." | ||
authors = ["Alex Patrie <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "bio_compose"}, {include = "tests"}] | ||
include = ["pyproject.toml"] | ||
|
||
|
||
[tool.poetry.scripts] | ||
verify = "bio_compose.__main__:verification_cli" | ||
run-simulation = "bio_compose.__main__:simulation_run_cli" | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10" | ||
python = "^3.10" | ||
requests-toolbelt = "^1.0.0" | ||
seaborn = "^0.13.2" | ||
antimony = "^2.15.0" | ||
antimony = "*" | ||
toml = "^0.10.2" | ||
process-bigraph = "^0.0.21" | ||
requests = "^2.32.3" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.3.2" | ||
sphinx = "^8.0.2" | ||
sphinx-autodoc-typehints = "^2.2.3" | ||
[tool.poetry.group.docs.dependencies] | ||
sphinx = "^8.1.3" | ||
sphinx-autodoc-typehints = "^2.5.0" | ||
|
||
|
||
[tool.poetry.group.image.dependencies] | ||
jupyterlab = "^4.3.0" | ||
|
||
[project.optional-dependencies] | ||
documentation = ["sphinx-autodoc-typehints"] | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
addopts = "--ignore=setup.py" | ||
python_files = "main.py" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
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
Binary file not shown.