Skip to content

Commit

Permalink
update conf file
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasMBury committed Jul 11, 2022
1 parent 22e7d2c commit a234c03
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,29 @@
# 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('../..'))


# mock import these packages because readthedocs doesn't have them installed
autodoc_mock_imports = [
'pandas',
'numpy',
'scipy',
'statsmodels',
'lmfit',
'arch',
'plotly',
]
# # mock import these packages because readthedocs doesn't have them installed
# autodoc_mock_imports = [
# 'pandas',
# 'numpy',
# 'scipy',
# 'statsmodels',
# 'lmfit',
# 'arch',
# 'plotly',
# ]



# -- Project information -----------------------------------------------------

project = 'ewstools'
copyright = '2019, Thomas M Bury'
copyright = '2022, Thomas M Bury'
author = 'Thomas M Bury'

# The short X.Y version
Expand Down Expand Up @@ -63,7 +64,8 @@
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = {'.rst': 'restructuredtext'}


# The master toctree document.
master_doc = 'index'
Expand Down Expand Up @@ -188,4 +190,3 @@
epub_exclude_files = ['search.html']


# -- Extension configuration -------------------------------------------------

0 comments on commit a234c03

Please sign in to comment.