We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa4a54 commit fedc19aCopy full SHA for fedc19a
.gitignore
@@ -1,2 +1,5 @@
1
*.py[co]
2
*.DS_STORE
3
+_build/
4
+credits.rst
5
+
.readthedocs.yaml
@@ -0,0 +1,17 @@
+# Read the Docs configuration file
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
+version: 2
6
+build:
7
+ os: ubuntu-24.04
8
+ apt_packages:
9
+ - rsync
10
+ tools:
11
+ python: "3.13"
12
+ jobs:
13
+ build:
14
+ html:
15
+ - echo $READTHEDOCS_OUTPUT
16
+ - mkdir --parents $READTHEDOCS_OUTPUT/html/
17
+ - rsync -avz --exclude .git --exclude ".*" --exclude _readthedocs --exclude "*.py" --exclude CNAME ./ _readthedocs/html
0 commit comments