Skip to content

Commit

Permalink
trying to fix rtd
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekbhr committed Nov 6, 2017
1 parent d8715c0 commit f244a55
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
import sys
import os
import shlex
# to allow readthedocs to compile without installing some dependencies
import mock

# MOCK_MODULES = ['numpy', 'numpy.ma', 'scipy', 'pyBigWig']
MOCK_MODULES = ['pyBigWig', 'py2bit']

for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()

sys.path.append(os.path.abspath(__file__) + "../shared/")
#from recommonmark.parser import CommonMarkParser
Expand Down Expand Up @@ -78,6 +86,13 @@
# The full version, including alpha/beta/rc tags.
release = '0.6.2'

# An rst epilog to apper at the end of every page
rst_epilog = """
+----------------------------------------------------------------+------------------------------------------------------------+
| `code @ github <https://github.com/maxplanck-ie/snakemake_workflows>`_. |
+----------------------------------------------------------------+------------------------------------------------------------+
"""

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sphinx-argparse

0 comments on commit f244a55

Please sign in to comment.