rename 'source' to 'docs'

Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
Unai Martinez-Corral 2022-02-14 22:05:13 +01:00
parent 350fb4ead1
commit 6be52fd7e7
16 changed files with 6 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,4 +1,2 @@
/source/_build/
/source/env/
*.pyc
*.sw*

View File

@ -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"

2
docs/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/_build/
/env/

View File

Before

Width:  |  Height:  |  Size: 307 B

After

Width:  |  Height:  |  Size: 307 B

View File

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 65 KiB

View File

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

View File

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -8,4 +8,4 @@ dependencies:
- pygobject
- pip
- pip:
- -r requirements.txt
- -r docs/requirements.txt

View File

@ -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: []