https://github.com/yaml2sbml-dev/yaml2sbml
Revision 75f9b0d6ecd35f05179c9495de6852c557defddd authored by Yannik Schälte on 08 February 2021, 23:02:15 UTC, committed by GitHub on 08 February 2021, 23:02:15 UTC
* add sphinx plugins; test docs build

* annotate

* restrict build to 3.9

* fix typo

* install pandoc
1 parent bdb17fb
Raw File
Tip revision: 75f9b0d6ecd35f05179c9495de6852c557defddd authored by Yannik Schälte on 08 February 2021, 23:02:15 UTC
add sphinx plugins; test docs build (#94)
Tip revision: 75f9b0d
.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