From 7d7bd3672cd0634e78befbaeab4e8b935202b2c6 Mon Sep 17 00:00:00 2001 From: Mateusz Date: Mon, 9 Dec 2024 12:32:26 +0100 Subject: [PATCH] add .gitignore add .readthedocs.yaml --- .gitignore | 1 + .readthedocs.yaml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.gitignore b/.gitignore index 71e6852..357ad30 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ __pycache__/ *.py[cod] *$py.class +.idea # C extensions *.so diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..aa0699a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,15 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "3.6" + +python: + install: + - method: pip + path: . + - requirements: docs/requirements.txt + +sphinx: + configuration: docs/source/conf.py