https://github.com/JarronL/pynrc
Raw File
Tip revision: 0354f0635dd4c5391ca3a769fa9e5ead83661c30 authored by Jarron Leisenring on 08 January 2022, 00:32:07 UTC
Add DOI badge
Tip revision: 0354f06
.readthedocs.yaml
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# build:
#   os: ubuntu-20.04
#   tools:
#     python: "3.7"

# Set up conda environment
conda:
  environment: .rtd-environment.yaml

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

python:
  version: "3.7"
  install:
    - requirements: docs/requirements.txt
    - method: pip
      path: .
      extra_requirements:
        - docs

formats:
  - pdf
back to top