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
|
2014-04-14 10:48:33 -04:00
|
|
|
extensions.extend(['sphinx.ext.autodoc'])
|
2014-02-14 16:33:36 -05:00
|
|
|
|
|
|
|
# Autodoc settings
|
|
|
|
autodoc_default_flags = ['members', 'special-members']
|
2014-02-21 18:35:22 -05:00
|
|
|
|
2014-03-31 19:19:40 -04:00
|
|
|
# Sister-site links to WWW
|
|
|
|
html_theme_options['extra_nav_links'] = {
|
|
|
|
"Main website": 'http://www.paramiko.org',
|
|
|
|
}
|