Christina Theodoris
commited on
Commit
·
142fe6f
1
Parent(s):
2a0dcbe
add readthedocs yaml and req
Browse files- .readthedocs.yaml +19 -0
- docs/requirements.txt +3 -0
.readthedocs.yaml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Read the Docs configuration file
|
| 2 |
+
|
| 3 |
+
# Required
|
| 4 |
+
version: 2
|
| 5 |
+
|
| 6 |
+
# Set the OS, Python version and other tools you might need
|
| 7 |
+
build:
|
| 8 |
+
os: ubuntu-22.04
|
| 9 |
+
tools:
|
| 10 |
+
python: "=3.10"
|
| 11 |
+
|
| 12 |
+
# Build documentation in the "docs/" directory with Sphinx
|
| 13 |
+
sphinx:
|
| 14 |
+
configuration: docs/source/conf.py
|
| 15 |
+
|
| 16 |
+
# Python requirements required build your documentation
|
| 17 |
+
python:
|
| 18 |
+
install:
|
| 19 |
+
- requirements: docs/requirements.txt
|
docs/requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.
|
| 2 |
+
sphinx_rtd_theme==2.0.0
|
| 3 |
+
nbsphinx==0.9.3
|