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 +