Initial commit. Adding docs

This commit is contained in:
Jonathan Herrewijnen 2023-10-15 22:14:56 +02:00
parent 379f7fe69e
commit 9fc23f4348
5 changed files with 16 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
venv/

View File

@ -1,3 +1,9 @@
# HerrewebPy # HerrewebPy
Python pakket voor Herreweb Python package for Herreweb.
```
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install sphinx sphinx-rtd-theme sphinxcontrib-napoleon
```

4
docs/conf.py Normal file
View File

@ -0,0 +1,4 @@
# docs/conf.py
extensions = [
'myst_parser',
]

1
herrewebpy/__init__.py Normal file
View File

@ -0,0 +1 @@
from . import *

3
readthedocs.yml Normal file
View File

@ -0,0 +1,3 @@
version: 2
sphinx:
configuration: docs/conf.py