doc: Documentation stub

This commit is contained in:
Leni Aniva 2024-10-17 21:03:18 -07:00
parent 8585e3dd9e
commit 7d4ee57c15
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
7 changed files with 1009 additions and 1 deletions

1
docs/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/_build

70
docs/_config.yml Normal file
View File

@ -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

6
docs/_toc.yml Normal file
View File

@ -0,0 +1,6 @@
format: jb-book
root: intro
parts:
- caption: Basic examples 🪄
chapters:
- file: search

2
docs/intro.md Normal file
View File

@ -0,0 +1,2 @@
# Intro

4
docs/search.md Normal file
View File

@ -0,0 +1,4 @@
# Search
About search ...

926
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -30,6 +30,7 @@ termcolor = "^2.4.0"
matplotlib = "^3.9.2"
seaborn = "^0.13.2"
pandas = "^2.2.3"
jupyter-book = "^1.0.3"
[build-system]
requires = ["poetry-core"]