1# -*- coding: utf-8 -*-
2#
3# Copyright (c) 2009 Tim Dumol
4# Copyright (c) 2013- The Spyder Development team
5#
6# Licensed under the terms of the Modified BSD License
7
8"""
9Docrepr library
10
11Library to generate rich and plain representations of docstrings,
12including several metadata of the object to which the docstring
13belongs
14
15Derived from spyderlib.utils.inspector and IPython.core.oinspect
16"""
17
18from ._version import version_info, __version__
19
20# Configuration options for docrepr
21options = {
22    'render_math': True,
23    'local_mathjax': False,
24    'collapse_sections': False,
25    'use_qt4': False,
26    'outline': False
27}
28