# Book settings1# Learn more at https://jupyterbook.org/customize/config.html23title: Companion code for the book "Hands-On Mathematical Optimization with Python"4author: The MO Book Group5logo: media/cover.jpg6exclude_patterns:7- .DS_Store8- "**.ipynb_checkpoints"9- "**.pytest_cache"10- tools11- _build12- .git13- .github14- "**/__pycache__"15- "**/venv"16- "**/env"17- "**/.venv"18- "**/.env"19- "**/node_modules"2021# Launch on Google Colab button22launch_buttons:23notebook_interface: "classic"24colab_url: "https://colab.research.google.com"2526# only build files that appear in toc27only_build_toc_files: true2829# Force re-execution of notebooks on each build.30# See https://jupyterbook.org/content/execute.html31execute:32execute_notebooks: off3334# Define the name of the latex output file for PDF builds35latex:36latex_documents:37targetname: MO-book.tex3839# Add a bibtex file so that we can create citations40bibtex_bibfiles:41- references.bib4243# Information about where the book exists on the web44repository:45url: https://github.com/mobook/MO-book # Online location of your book46branch: main # Which branch of the repository should be used when creating links (optional)4748# Add GitHub buttons to your book49# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository50html:51use_issues_button: true52use_repository_button: true53use_multitoc_numbering: false54google_analytics_id: G-DVQ7NZ8CYZ55565758