https://github.com/yaml2sbml-dev/yaml2sbml
Raw File
Tip revision: 48ff99b44f666159a688a16ca80673ee7854bace authored by Jakob Vanhoefer on 07 March 2021, 16:53:47 UTC
fix notebooks
Tip revision: 48ff99b
.readthedocs.yml
# .readthedocs.yml
# readthedocs configuration file
# see https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Format version
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: doc/conf.py

# Python requirements
python:
  version: 3.7
  install:
    - method: pip
      path: .
      extra_requirements:
        - doc

# What to build
formats:
  - htmlzip
  - pdf
back to top