diff options
author | Nao Pross <np@0hm.ch> | 2024-04-29 14:12:22 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2024-04-29 14:12:22 +0200 |
commit | 6b16f20e5c965406b841790ca0d7ae56925860ac (patch) | |
tree | 01bed1c72b1fcaa9fd0a65f36a233de6febbcdf7 /docs | |
parent | Add total order to MonomialIndex (diff) | |
download | polymatrix-6b16f20e5c965406b841790ca0d7ae56925860ac.tar.gz polymatrix-6b16f20e5c965406b841790ca0d7ae56925860ac.zip |
Add sphinx documentation generator
To generate the documentation run
$ make -C docs html
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile | 20 | ||||
-rw-r--r-- | docs/conf.py | 34 | ||||
-rw-r--r-- | docs/index.rst | 22 | ||||
-rw-r--r-- | docs/make.bat | 35 | ||||
-rw-r--r-- | docs/reference.rst | 54 |
5 files changed, 165 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d4bb2cb --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..2e293f4 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,34 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +# Add path of polymatrix code +import os +import sys +sys.path.insert(0, os.path.abspath("..")) + +project = 'polymatrix' +copyright = '2024, Michael Schneeberger' +author = 'Michael Schneeberger' +release = '0.0.1' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary'] +autosummary_generate = True + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'python_docs_theme' +html_static_path = ['_static'] diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..8389b3a --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,22 @@ +.. polymatrix documentation master file, created by + sphinx-quickstart on Wed Apr 24 15:20:48 2024. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to polymatrix's documentation! +====================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + reference + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..32bb245 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=.
+set BUILDDIR=_build
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+ echo.
+ echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+ echo.installed, then set the SPHINXBUILD environment variable to point
+ echo.to the full path of the 'sphinx-build' executable. Alternatively you
+ echo.may add the Sphinx directory to PATH.
+ echo.
+ echo.If you don't have Sphinx installed, grab it from
+ echo.https://www.sphinx-doc.org/
+ exit /b 1
+)
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git a/docs/reference.rst b/docs/reference.rst new file mode 100644 index 0000000..fa0ef3c --- /dev/null +++ b/docs/reference.rst @@ -0,0 +1,54 @@ +Package Contents +================ + +.. automodule:: polymatrix + :members: + :undoc-members: + :show-inheritance: + + +PolyMatrix Module +================= + +.. automodule:: polymatrix.polymatrix + :members: + :undoc-members: + :show-inheritance: + +Abstract Base Classes +--------------------- + +.. automodule:: polymatrix.polymatrix.abc + :members: + :undoc-members: + :show-inheritance: + +Mixins +------ + +.. automodule:: polymatrix.polymatrix.mixins + :members: + :undoc-members: + :show-inheritance: + +Index Types +----------- + +.. automodule:: polymatrix.polymatrix.typing + :members: + :undoc-members: + :show-inheritance: + +.. + Mixin implementations + --------------------- + + .. automodule:: polymatrix.polymatrix.impl + :members: + :undoc-members: + :show-inheritance: + + .. automodule:: polymatrix.polymatrix.init + :members: + :undoc-members: + :show-inheritance: |