Skip to content

Commit

Permalink
Merge pull request #79 from jhlegarreta/IncreaseDocModuleConsistency
Browse files Browse the repository at this point in the history
STYLE: Make documentation module consistent with Sphinx conventions
  • Loading branch information
jhlegarreta committed Dec 4, 2023
2 parents c657bd6 + 73f8d64 commit 9c52a44
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ build:
jobs:
pre_build:
- pip install --upgrade furo
- sphinx-apidoc -f -o doc .
- sphinx-apidoc -f -o docs/source .

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

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ This software is distributed under a particular license. Please see the
[*LICENSE*](LICENSE) file for details.


[FINTA]: ./doc/bibtex/Legarreta21_-_MIA_-_FINTA.bib "Filtering in tractography using autoencoders (FINTA)"
[CINTA]: ./doc/bibtex/Legarreta22_-_MICCAI-CDMRI_-_CINTA.bib "Clustering in Tractography Using Autoencoders (CINTA)"
[GESTA]: ./doc/bibtex/Legarreta23_-_MIA_-_GESTA.bib "Generative Sampling in Bundle Tractography using Autoencoders (GESTA)"
[FIESTA]: ./doc/bibtex/Dumais23_-_Neuroimage_-_FIESTA.bib "FIESTA: Autoencoders for accurate fiber segmentation in tractography"
[FINTA]: ./docs/bibtex/Legarreta21_-_MIA_-_FINTA.bib "Filtering in tractography using autoencoders (FINTA)"
[CINTA]: ./docs/bibtex/Legarreta22_-_MICCAI-CDMRI_-_CINTA.bib "Clustering in Tractography Using Autoencoders (CINTA)"
[GESTA]: ./docs/bibtex/Legarreta23_-_MIA_-_GESTA.bib "Generative Sampling in Bundle Tractography using Autoencoders (GESTA)"
[FIESTA]: ./docs/bibtex/Dumais23_-_Neuroimage_-_FIESTA.bib "FIESTA: Autoencoders for accurate fiber segmentation in tractography"
2 changes: 1 addition & 1 deletion doc/Makefile → docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = doc
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions doc/conf.py → docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
from datetime import datetime
from importlib.metadata import version as vers

# import sys
import tomli

# sys.path.insert(0, os.path.abspath('.'))
# Location of files where Sphinx will look for docstrings
sys.path.insert(0, os.path.abspath(".."))

# Load the release info into a dict by explicit execution
with open(os.path.join("..", "pyproject.toml"), "rb") as f:
with open(os.path.join("../..", "pyproject.toml"), "rb") as f:
info = tomli.load(f)

# -- Project information -----------------------------------------------------
Expand Down
File renamed without changes.

0 comments on commit 9c52a44

Please sign in to comment.