From 4c6ba41e4e786c9d3fa3ae81f313255dc7669757 Mon Sep 17 00:00:00 2001 From: Massimiliano Galli <massimiliano.galli@cern.ch> Date: Fri, 21 Jan 2022 16:12:47 +0100 Subject: [PATCH] finalize reproducer --- .gitignore | 83 ++++++++++++++++++++++++++++++++++++++++++++++++ book/_config.yml | 1 - environment.yml | 12 +++++++ 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 environment.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cadc17 --- /dev/null +++ b/.gitignore @@ -0,0 +1,83 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Sphinx documentation +docs/_build/ + +# vim +*.swp +*.swo + +# .root files +*.root + +# Notebooks +.ipynb_checkpoints/* +*/.ipynb_checkpoints/* + +# Pickle files +*.pkl + +# Dask +dask-worker-space + +# Parquet +*.parquet + +# Profiling +*.prof +*.lprof +*.svg + +# VisualStudioCode +*.code-workspace +.vscode + +# JB +book/_build/* +book/.ipynb_checkpoints/* diff --git a/book/_config.yml b/book/_config.yml index 23becdf..3cce64b 100644 --- a/book/_config.yml +++ b/book/_config.yml @@ -32,6 +32,5 @@ html: launch_buttons: notebook_interface: jupyterlab binderhub_url: "https://binder.let.ethz.ch/" - thebe: true use_show_widgets_button: true colab_url: https://colab.research.google.com diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..5e42444 --- /dev/null +++ b/environment.yml @@ -0,0 +1,12 @@ +name: jb-example +channels: + - conda-forge +dependencies: + - numpy + - jupyterlab + - scipy + - matplotlib + - bokeh + - jupyter-book + - ghp-import + - ipympl -- GitLab