https://github.com/AuReMe/metage2metabo
Raw File
Tip revision: aa587765f058d10b95b28a68894c4d9db60427a3 authored by Arnaud Belcour on 16 October 2019, 15:58:23 UTC
Add m2m_analysis in readthedocs.
Tip revision: aa58776
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

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

# Use conda to install biopython (requiring numpy, a C dependent package).
conda:
  environment: docs/environment.yml

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.6
  install:
    - requirements: docs/requirements.txt
    - method: pip
      path: .
back to top