From ff07c4980bd1c0ee2901b0479e865f5afe3e9535 Mon Sep 17 00:00:00 2001 From: Stephen Mildenhall Date: Wed, 12 Mar 2025 16:37:44 +0000 Subject: [PATCH] added readthedocs.yaml --- .readthedocs.yaml | 26 ++++++++++++++++++++++++++ docs-serve.bat | 4 ++++ 2 files changed, 30 insertions(+) create mode 100644 .readthedocs.yaml create mode 100644 docs-serve.bat diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..e3f2336 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,26 @@ +# .readthedocs.yaml +# Read the Docs configuration file + +# Required +version: 2 + +# Set the version of Python and other tools you might need +build: + os: ubuntu-24.04 + tools: + python: "3.10" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# If using Sphinx, optionally build your docs in additional formats such as PDF +formats: + - pdf + +# Optionally declare the Python requirements required to build your docs +python: + install: + - method: pip + path: . + diff --git a/docs-serve.bat b/docs-serve.bat new file mode 100644 index 0000000..a81cbdf --- /dev/null +++ b/docs-serve.bat @@ -0,0 +1,4 @@ +pushd docs\_build\html + +python -m http.server 7676 +