Spaces:
Running
Running
Add RTD config file
Browse files- .readthedocs.yaml +17 -0
.readthedocs.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# .readthedocs.yaml
|
| 2 |
+
version: 2
|
| 3 |
+
|
| 4 |
+
build:
|
| 5 |
+
os: ubuntu-22.04
|
| 6 |
+
tools:
|
| 7 |
+
python: "3.10"
|
| 8 |
+
|
| 9 |
+
sphinx:
|
| 10 |
+
configuration: docs/conf.py
|
| 11 |
+
|
| 12 |
+
python:
|
| 13 |
+
install:
|
| 14 |
+
- method: pip
|
| 15 |
+
# Install the main project code (required for autodoc)
|
| 16 |
+
path: .
|
| 17 |
+
- requirements: docs/requirements.txt
|