doc: Documentation stub
This commit is contained in:
parent
8585e3dd9e
commit
7d4ee57c15
|
@ -0,0 +1 @@
|
||||||
|
/_build
|
|
@ -0,0 +1,70 @@
|
||||||
|
# Book settings
|
||||||
|
# Learn more at https://jupyterbook.org/customize/config.html
|
||||||
|
# Comprehensive example: https://github.com/executablebooks/jupyter-book/blob/master/docs/_config.yml
|
||||||
|
|
||||||
|
title: PyPantograph
|
||||||
|
author: Leni Aniva
|
||||||
|
#logo: logo.png
|
||||||
|
|
||||||
|
# Force re-execution of notebooks on each build.
|
||||||
|
# See https://jupyterbook.org/content/execute.html
|
||||||
|
execute:
|
||||||
|
execute_notebooks: force
|
||||||
|
|
||||||
|
# Define the name of the latex output file for PDF builds
|
||||||
|
latex:
|
||||||
|
latex_documents:
|
||||||
|
targetname: book.tex
|
||||||
|
|
||||||
|
# Add a bibtex file so that we can create citations
|
||||||
|
#bibtex_bibfiles:
|
||||||
|
# - references.bib
|
||||||
|
|
||||||
|
# Information about where the book exists on the web
|
||||||
|
repository:
|
||||||
|
url: https://github.com/lenianiva/PyPantograph # Online location of your book
|
||||||
|
path_to_book: docs # Optional path to your book, relative to the repository root
|
||||||
|
branch: main # Which branch of the repository should be used when creating links (optional)
|
||||||
|
|
||||||
|
# Add GitHub buttons to your book
|
||||||
|
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
|
||||||
|
html:
|
||||||
|
use_issues_button: true
|
||||||
|
use_repository_button: true
|
||||||
|
|
||||||
|
sphinx:
|
||||||
|
config:
|
||||||
|
intersphinx_mapping:
|
||||||
|
ebp:
|
||||||
|
- "https://executablebooks.org/en/latest/"
|
||||||
|
- null
|
||||||
|
myst-parser:
|
||||||
|
- "https://myst-parser.readthedocs.io/en/latest/"
|
||||||
|
- null
|
||||||
|
myst-nb:
|
||||||
|
- "https://myst-nb.readthedocs.io/en/latest/"
|
||||||
|
- null
|
||||||
|
sphinx:
|
||||||
|
- "https://www.sphinx-doc.org/en/master"
|
||||||
|
- null
|
||||||
|
nbformat:
|
||||||
|
- "https://nbformat.readthedocs.io/en/latest"
|
||||||
|
- null
|
||||||
|
sd:
|
||||||
|
- "https://sphinx-design.readthedocs.io/en/latest"
|
||||||
|
- null
|
||||||
|
sphinxproof:
|
||||||
|
- "https://sphinx-proof.readthedocs.io/en/latest/"
|
||||||
|
- null
|
||||||
|
hoverxref_intersphinx:
|
||||||
|
- "sphinxproof"
|
||||||
|
mathjax3_config:
|
||||||
|
tex:
|
||||||
|
macros:
|
||||||
|
"N": "\\mathbb{N}"
|
||||||
|
"floor": ["\\lfloor#1\\rfloor", 1]
|
||||||
|
"bmat": ["\\left[\\begin{array}"]
|
||||||
|
"emat": ["\\end{array}\\right]"]
|
||||||
|
|
||||||
|
extra_extensions:
|
||||||
|
- sphinx.ext.intersphinx
|
|
@ -0,0 +1,6 @@
|
||||||
|
format: jb-book
|
||||||
|
root: intro
|
||||||
|
parts:
|
||||||
|
- caption: Basic examples 🪄
|
||||||
|
chapters:
|
||||||
|
- file: search
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Intro
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# Search
|
||||||
|
|
||||||
|
About search ...
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -30,6 +30,7 @@ termcolor = "^2.4.0"
|
||||||
matplotlib = "^3.9.2"
|
matplotlib = "^3.9.2"
|
||||||
seaborn = "^0.13.2"
|
seaborn = "^0.13.2"
|
||||||
pandas = "^2.2.3"
|
pandas = "^2.2.3"
|
||||||
|
jupyter-book = "^1.0.3"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
|
|
Loading…
Reference in New Issue