diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..1240941f --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,19 @@ +# This file is part of REANA. +# Copyright (C) 2023 CERN. +# +# REANA is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details. + +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.8" + +sphinx: + configuration: docs/conf.py + +python: + install: + - requirements: docs/requirements.txt diff --git a/MANIFEST.in b/MANIFEST.in index 6da2a3b0..e50f771e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -25,3 +25,4 @@ recursive-include docs *.rst recursive-include tests *.py recursive-include tests *.txt global-exclude *.py[co] .DS_Store +exclude .readthedocs.yaml