Skip to content

Commit fa6ebe7

Browse files
committed
rename
1 parent 1bb18eb commit fa6ebe7

File tree

6 files changed

+80
-2
lines changed

6 files changed

+80
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<p align="center">
1212
<a href="https://github.com/aghaeifar/SpinWalk">
13-
<img src="doc/img/logo.png" alt="MC/DC logo" width="160" height="180">
13+
<img src="docs/img/logo.png" alt="MC/DC logo" width="160" height="180">
1414
</a>
1515
</p>
1616

@@ -23,7 +23,7 @@ This program is designed to simulate the behavior of spins under a specific MR s
2323

2424
Here are example plots obtained from SpinWalk where show BOLD sensitivity as a function of vessel size for Gradient Echo (GRE) and Spin Echo (SE) seqeuences.
2525

26-
![](./doc/img/gre_se.jpg)
26+
![](./docs/img/gre_se.jpg)
2727

2828
Some [literature](#Literature) are provided as reference to get a better feeling of what are intended to get from this kind of simulations.
2929

File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/source/conf.py

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# This file only contains a selection of the most common options. For a full
4+
# list see the documentation:
5+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
6+
7+
# -- Path setup --------------------------------------------------------------
8+
9+
# If extensions (or modules to document with autodoc) are in another directory,
10+
# add these directories to sys.path here. If the directory is relative to the
11+
# documentation root, use os.path.abspath to make it absolute, like shown here.
12+
13+
import os
14+
import sys
15+
16+
sys.path.insert(0, os.path.abspath(".."))
17+
18+
19+
# -- Project information -----------------------------------------------------
20+
21+
project = "SpinWalk"
22+
author = "Ali Aghaeifar"
23+
24+
# The full version, including alpha/beta/rc tags
25+
release = "0.1.0"
26+
27+
28+
# -- General configuration ---------------------------------------------------
29+
30+
# Add any Sphinx extension module names here, as strings. They can be
31+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32+
# ones.
33+
extensions = [
34+
"sphinx.ext.autodoc",
35+
"sphinx.ext.napoleon",
36+
"nbsphinx",
37+
]
38+
39+
# Add any paths that contain templates here, relative to this directory.
40+
templates_path = ["_templates"]
41+
42+
# List of patterns, relative to source directory, that match files and
43+
# directories to ignore when looking for source files.
44+
# This pattern also affects html_static_path and html_extra_path.
45+
exclude_patterns = [
46+
"_build",
47+
"**.ipynb_checkpoints",
48+
]
49+
50+
51+
# -- Options for HTML output -------------------------------------------------
52+
53+
# The theme to use for HTML and HTML Help pages. See the documentation for
54+
# a list of builtin themes.
55+
#
56+
html_theme = "furo"
57+
58+
# Add any paths that contain custom static files (such as style sheets) here,
59+
# relative to this directory. They are copied after the builtin static files,
60+
# so a file named "default.css" will overwrite the builtin "default.css".
61+
html_static_path = ["_static"]
62+
63+
html_logo = "_static/logo.png"
64+
65+
html_theme_options = {
66+
"sidebar_hide_name": True,
67+
}
68+
69+
# Specify master doc so build at read the docs won't fail
70+
master_doc = "index"
71+
72+
# Syntax highlighting
73+
pygments_style = "stata-light"
74+
pygments_dark_style = "stata-dark"
75+
76+
autodoc_default_options = {
77+
"imported-members": True,
78+
}

0 commit comments

Comments
 (0)