blob: 33892d2f6a69bcf20d1c74a98a9e6af95cf5d4fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
version: 2
build:
os: ubuntu-20.04
tools:
python: "2.7"
commands:
- pip install --upgrade pip setuptools wheel
- cd ${READTHEDOCS_PROJECT}/doc && pip install -r requirements.txt
- cd ${READTHEDOCS_PROJECT}/doc && make html
- mkdir _readthedocs
- cp -rv ${READTHEDOCS_PROJECT}/doc/_build/html _readthedocs/html
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: ${READTHEDOCS_PROJECT}/doc/conf.py
python:
install:
- requirements: ${READTHEDOCS_PROJECT}/docs/requirements.txt
|