From 02ac142ad0466f685ceb3eb4a91c8ee8f4f8f6e2 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Sun, 15 Sep 2019 01:05:39 +0200 Subject: [PATCH] Docs: Add readthedocs config --- .readthtedocs.yml | 21 +++++++++++++++++++++ docs/requirements.txt | 1 + 2 files changed, 22 insertions(+) create mode 100644 .readthtedocs.yml create mode 100644 docs/requirements.txt diff --git a/.readthtedocs.yml b/.readthtedocs.yml new file mode 100644 index 00000000..878b1ee9 --- /dev/null +++ b/.readthtedocs.yml @@ -0,0 +1,21 @@ + +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Build documentation with MkDocs +#mkdocs: +# configuration: mkdocs.yml + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 + install: + - requirements: docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 00000000..25daa5dd --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +sphinxcontrib-httpdomain==1.7.0