A empty Python-project to setup a good documentation-site based on python-docstrings
Use pip or conda env to install the nessesary packages
$ pip install -r requirements.txtor
$ conda env update --file conda.ymlor
$ conda env create -n <env_name> --file conda.ymlPlace your documentation documents, as markdown-files in /docs, and put them in the nav
section of the mkdocs.yml.
Python files in /src/<package_name> are automaticaly parsed and included.
$ mkdocs serve to start the live-reloading docs server.
$ mkdocs build to build the documentation site (in /site)