aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorJ08nY2021-01-20 20:24:11 +0100
committerJ08nY2021-01-20 20:24:11 +0100
commit9ec68bdb56882777e5b3670380bf1e1ad7d0a7a3 (patch)
treebb695e485808e4d0517d84053019e2f7ddb03679 /docs/conf.py
parentadc3cd52147f35e0a7cc9008ac96619dd89cda48 (diff)
downloadpyecsca-9ec68bdb56882777e5b3670380bf1e1ad7d0a7a3.tar.gz
pyecsca-9ec68bdb56882777e5b3670380bf1e1ad7d0a7a3.tar.zst
pyecsca-9ec68bdb56882777e5b3670380bf1e1ad7d0a7a3.zip
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 5ceee32..438d83b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -23,7 +23,7 @@ project = 'pyecsca'
copyright = '2018-2020, Jan Jancar'
author = 'Jan Jancar'
-import sys; import os; sys.path.append(os.path.abspath('..'))
+sys.path.append(os.path.abspath('..'))
# The short X.Y version
version = '0.1.0'
@@ -175,7 +175,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'pyecsca', 'pyecsca Documentation',
- author, 'pyecsca', 'One line description of project.',
+ author, 'pyecsca', 'Python Elliptic Curve Side-Channel Analysis toolkit',
'Miscellaneous'),
]
@@ -207,7 +207,10 @@ autodoc_default_options = {
"undoc-members": True,
"inherited-members": True,
"show-inheritance": True,
- "member-order": "bysource"
+ "member-order": "bysource",
+ # "special-members": "__init__"
}
+autoclass_content = "both"
+
nbsphinx_allow_errors = True