rename 'source' to 'docs'
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
|
@ -1,4 +1,2 @@
|
|||
/source/_build/
|
||||
/source/env/
|
||||
*.pyc
|
||||
*.sw*
|
||||
|
|
4
Makefile
|
@ -3,7 +3,7 @@
|
|||
TOP_DIR := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
|
||||
|
||||
# A pip `requirements.txt` file.
|
||||
REQUIREMENTS_FILE := requirements.txt
|
||||
REQUIREMENTS_FILE := docs/requirements.txt
|
||||
|
||||
# A conda `environment.yml` file.
|
||||
ENVIRONMENT_FILE := environment.yml
|
||||
|
@ -21,7 +21,7 @@ BUILDDIR = _build
|
|||
# Internal variables.
|
||||
PAPEROPT_a4 = -D latex_paper_size=a4
|
||||
PAPEROPT_letter = -D latex_paper_size=letter
|
||||
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
|
||||
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) docs
|
||||
|
||||
help:
|
||||
@echo "Please use \`make <target>' where <target> is one of"
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
/_build/
|
||||
/env/
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
@ -8,4 +8,4 @@ dependencies:
|
|||
- pygobject
|
||||
- pip
|
||||
- pip:
|
||||
- -r requirements.txt
|
||||
- -r docs/requirements.txt
|
||||
|
|
|
@ -7,7 +7,7 @@ version: 2
|
|||
|
||||
# Build documentation in the docs/ directory with Sphinx
|
||||
sphinx:
|
||||
configuration: source/conf.py
|
||||
configuration: docs/conf.py
|
||||
|
||||
# Optionally build your docs in additional formats such as PDF and ePub
|
||||
formats: []
|
||||
|
|