From 01cd18d28137ad1a777705f0e3df74ef18ee50ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Srokosz?= Date: Wed, 6 Sep 2023 12:42:44 +0200 Subject: [PATCH] Create .readthedocs.yml --- .readthedocs.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..b3228e0cb --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,24 @@ +# .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 + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +python: + install: + - requirements: docs/requirements.txt + - method: setuptools + path: . + +build: + os: ubuntu-22.04 + tools: + python: "3.10"