Add jupyter lab and notebook as a dependency
This commit is contained in:
parent
a0eed872de
commit
b31784aa6b
4
Makefile
4
Makefile
@ -17,6 +17,10 @@ help:
|
|||||||
docs: print-env
|
docs: print-env
|
||||||
@${MKDOCS} ${MKDOCS_OPTION} -f docs/mkdocs.yml
|
@${MKDOCS} ${MKDOCS_OPTION} -f docs/mkdocs.yml
|
||||||
|
|
||||||
|
.PHONY: notebooks #: Run jupyter notebooks.
|
||||||
|
notebooks:
|
||||||
|
@${JUPYTER} ${JUPYTER_OPTION}
|
||||||
|
|
||||||
%:
|
%:
|
||||||
@test -f scripts/${*}.sh
|
@test -f scripts/${*}.sh
|
||||||
@${SHELL} scripts/${*}.sh
|
@${SHELL} scripts/${*}.sh
|
||||||
@ -2,9 +2,13 @@
|
|||||||
|
|
||||||
## Make
|
## Make
|
||||||
MKDOCS=mkdocs
|
MKDOCS=mkdocs
|
||||||
|
JUPYTER=jupyter
|
||||||
|
|
||||||
## Mkdocs
|
## Mkdocs
|
||||||
MKDOCS_OPTION=serve
|
MKDOCS_OPTION=serve
|
||||||
|
|
||||||
|
## Jupyter
|
||||||
|
JUPYTER_OPTION=lab
|
||||||
|
|
||||||
## Path
|
## Path
|
||||||
PATH:=.venv/bin/path:${PATH}
|
PATH:=.venv/bin/path:${PATH}
|
||||||
950
poetry.lock
generated
950
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@ -9,6 +9,8 @@ python = "^3.7"
|
|||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
mkdocs = "^1.1.2"
|
mkdocs = "^1.1.2"
|
||||||
|
jupyter = "^1.0.0"
|
||||||
|
jupyterlab = "^2.2.2"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry>=0.12"]
|
requires = ["poetry>=0.12"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user