Skip to content

Commit

Permalink
🐛 fix sphinx doc to work with readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
bneron committed Feb 7, 2020
1 parent 26b9607 commit e75ef4a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,20 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath(os.path.join('..', '..')))
print(sys.path)

from grep_vcf import __version__ as gv_version

print(gv_version)
# -- Project information -----------------------------------------------------

project = 'grep_vcf'
copyright = '2020, Bertrand Neron'
author = 'Bertrand Neron'

# The full version, including alpha/beta/rc tags
release = '0.1'
release = gv_version


# -- General configuration ---------------------------------------------------
Expand All @@ -47,6 +50,8 @@
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []

# The master toctree document.
master_doc = 'index'

# -- Options for HTML output -------------------------------------------------

Expand Down

0 comments on commit e75ef4a

Please sign in to comment.