https://github.com/yaml2sbml-dev/yaml2sbml
Revision eccdc564d53c1a2e9c397a109f3d8fe4fa764fe1 authored by Jakob Vanhoefer on 12 February 2021, 12:24:48 UTC, committed by GitHub on 12 February 2021, 12:24:48 UTC
Co-authored-by: Yannik Schälte <31767307+yannikschaelte@users.noreply.github.com>
1 parent 3b08415
Raw File
Tip revision: eccdc564d53c1a2e9c397a109f3d8fe4fa764fe1 authored by Jakob Vanhoefer on 12 February 2021, 12:24:48 UTC
Update issue templates (#96)
Tip revision: eccdc56
.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