···158158# and can be added to the global gitignore or merged into this file. For a more nuclear
159159# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160#.idea/
161161+162162+# sphinx docs
163163+_build/
+20
Makefile
···11+# Minimal makefile for Sphinx documentation
22+#
33+44+# You can set these variables from the command line, and also
55+# from the environment for the first two.
66+SPHINXOPTS ?=
77+SPHINXBUILD ?= sphinx-build
88+SOURCEDIR = .
99+BUILDDIR = _build
1010+1111+# Put it first so that "make" without argument is like "make help".
1212+help:
1313+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
1414+1515+.PHONY: help Makefile
1616+1717+# Catch-all target: route all unknown targets to Sphinx using the new
1818+# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
1919+%: Makefile
2020+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+28
conf.py
···11+# Configuration file for the Sphinx documentation builder.
22+#
33+# For the full list of built-in configuration values, see the documentation:
44+# https://www.sphinx-doc.org/en/master/usage/configuration.html
55+66+# -- Project information -----------------------------------------------------
77+# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88+99+project = 'atmst'
1010+copyright = '2024, David Buchanan'
1111+author = 'David Buchanan'
1212+release = '0.0.1'
1313+1414+# -- General configuration ---------------------------------------------------
1515+# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1616+1717+extensions = ['sphinx.ext.autodoc']
1818+1919+templates_path = ['_templates']
2020+exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
2121+2222+2323+2424+# -- Options for HTML output -------------------------------------------------
2525+# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2626+2727+html_theme = 'alabaster'
2828+html_static_path = ['_static']