From 094f91c4fcc7aab8cee6ff207742607c76c8f4ce Mon Sep 17 00:00:00 2001 From: rednafi Date: Mon, 18 Nov 2019 18:02:05 +0600 Subject: [PATCH] docs need to be deployed via readthedocs --- docs/.readthedocs.yml | 22 ++++++++++++++++++++++ docs/requirements.txt | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 docs/requirements.txt diff --git a/docs/.readthedocs.yml b/docs/.readthedocs.yml index e69de29..f8fb0a7 100644 --- a/docs/.readthedocs.yml +++ b/docs/.readthedocs.yml @@ -0,0 +1,22 @@ +# 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/docs_site/conf.py + +# Build documentation with MkDocs +#mkdocs: +# configuration: mkdocs.yml + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# 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 0000000..8a13598 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,2 @@ +sphinx==2.2.1 +recommonmark=0.6.0