Skip to content

Commit

Permalink
trying to fix readthedocs autodoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Pelaez-Zapata committed Jul 4, 2024
1 parent e397a82 commit f3bc454
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,27 @@

import os
import sys
sys.path.insert(0, os.path.abspath('..'))

import ewdm
sys.path.insert(0, os.path.abspath("../"))

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'ewdm'
copyright = '2024, Daniel Pelaez-Zapata'
author = 'Daniel Pelaez-Zapata'
release = '0.3'
version = ewdm.__version__
release = ewdm.__version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = ['sphinx.ext.autodoc', 'sphinx.ext.napoleon']
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon'
]

templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
Expand Down
6 changes: 6 additions & 0 deletions ewdm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# -*- coding: utf-8 -*-
# vim:fenc=utf-8

"""Top-level package for ewdm"""

__author__ = """Daniel Pelaez-Zapata"""
__email__ = 'daniel.pelaez-zapata@proton.me'
__version__ = '0.3'

# from . import fourier
from . import helpers
from . import density
Expand Down

0 comments on commit f3bc454

Please sign in to comment.