BjoernLudwigPTB/pyxml2pdf

View on GitHub
.readthedocs.yml

Summary

Maintainability
Test Coverage
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

version: 2

# Build HTML & PDF
formats:
  - htmlzip
  - pdf

# Docker image to use for build process
build:
  image: latest

# Python environment to build the docs for installing the package
python:
   version: 3.7
   install:
      - requirements: requirements/requirements.txt

# Sphinx configuration
sphinx:
  builder: html
  configuration: docs/conf.py
  fail_on_warning: false