From 568e96123d623440959d56ca6673cb72f8a771b9 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Thu, 13 Oct 2022 09:50:46 +0200 Subject: [PATCH] Configure Read the Docs --- .gitattributes | 1 + .readthedocs.yaml | 17 +++++++++++++++++ doc/requirements.txt | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 .readthedocs.yaml create mode 100644 doc/requirements.txt diff --git a/.gitattributes b/.gitattributes index b657a8d6..10780d2b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ .gitattributes export-ignore .github export-ignore +.readthedocs.yaml export-ignore behave export-ignore contrib/build_rpm.py export-ignore contrib/osc.spec export-ignore diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..9b20fc6a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,17 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +build: + os: ubuntu-20.04 + tools: + python: "3.9" + +sphinx: + configuration: doc/conf.py + +python: + install: + - requirements: doc/requirements.txt diff --git a/doc/requirements.txt b/doc/requirements.txt new file mode 100644 index 00000000..9e737b6a --- /dev/null +++ b/doc/requirements.txt @@ -0,0 +1,2 @@ +cryptography +urllib3