paramiko/sites/docs/conf.py

17 lines
440 B
Python
Raw Normal View History

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
# Enable autodoc, intersphinx
extensions.extend(['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'])
# Autodoc settings
autodoc_default_flags = ['members', 'special-members']
2014-02-21 18:35:22 -05:00
# Intersphinx connection to stdlib
intersphinx_mapping = {
'python': ('http://docs.python.org/2.6', None),
}