aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorJ08nY2020-02-13 17:52:12 +0100
committerJ08nY2020-02-13 18:29:24 +0100
commiteef8b99dad6f43d97d9194a1a6f16bc5e2ef66b0 (patch)
tree8748dc624cc8047b9f1410b65ac0e6acf7df08eb /docs/conf.py
parentac0f153698adc4dfde4c8066d6052b916878f14a (diff)
downloadpyecsca-eef8b99dad6f43d97d9194a1a6f16bc5e2ef66b0.tar.gz
pyecsca-eef8b99dad6f43d97d9194a1a6f16bc5e2ef66b0.tar.zst
pyecsca-eef8b99dad6f43d97d9194a1a6f16bc5e2ef66b0.zip
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2b1ee9c..f84364b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,15 +12,15 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
-# import os
-# import sys
-# sys.path.insert(0, os.path.abspath('.'))
+import os
+import sys
+sys.path.insert(0, os.path.abspath('../notebook/'))
# -- Project information -----------------------------------------------------
project = 'pyecsca'
-copyright = '2018-2019, Jan Jancar'
+copyright = '2018-2020, Jan Jancar'
author = 'Jan Jancar'
import sys; import os; sys.path.append(os.path.abspath('..'))
@@ -46,6 +46,7 @@ extensions = [
'sphinx.ext.todo',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
+ 'nbsphinx'
]
# Add any paths that contain templates here, relative to this directory.
@@ -70,7 +71,7 @@ language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
-exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
+exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '**.ipynb_checkpoints']
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "trac"