2014-01-13 15:17:46 -05:00
|
|
|
# Obtain shared config values
|
|
|
|
import os, sys
|
|
|
|
sys.path.append(os.path.abspath('..'))
|
2014-01-23 05:32:59 -05:00
|
|
|
sys.path.append(os.path.abspath('../..'))
|
2014-01-13 15:17:46 -05:00
|
|
|
from shared_conf import *
|
2014-01-23 05:32:59 -05:00
|
|
|
|
2014-02-14 16:33:36 -05:00
|
|
|
# Enable autodoc, intersphinx
|
|
|
|
extensions.extend(['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'])
|
|
|
|
|
|
|
|
# Autodoc settings
|
|
|
|
autodoc_default_flags = ['members', 'special-members']
|