2014-01-10 22:26:04 -05:00
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
import alabaster
|
|
|
|
|
|
|
|
|
2014-02-03 17:09:56 -05:00
|
|
|
# Alabaster theme + mini-extension
|
2014-01-10 22:26:04 -05:00
|
|
|
html_theme_path = [alabaster.get_path()]
|
2014-02-03 17:09:56 -05:00
|
|
|
extensions = ['alabaster']
|
2014-01-13 15:17:46 -05:00
|
|
|
# Paths relative to invoking conf.py - not this shared file
|
2014-01-10 22:26:04 -05:00
|
|
|
html_theme = 'alabaster'
|
|
|
|
html_theme_options = {
|
|
|
|
'description': "A Python implementation of SSHv2.",
|
|
|
|
'github_user': 'paramiko',
|
|
|
|
'github_repo': 'paramiko',
|
|
|
|
'gittip_user': 'bitprophet',
|
|
|
|
'analytics_id': 'UA-18486793-2',
|
|
|
|
}
|
|
|
|
html_sidebars = {
|
|
|
|
'**': [
|
|
|
|
'about.html',
|
2014-01-28 15:50:19 -05:00
|
|
|
'navigation.html',
|
2014-01-10 22:26:04 -05:00
|
|
|
'searchbox.html',
|
|
|
|
'donate.html',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Regular settings
|
2014-03-07 21:46:40 -05:00
|
|
|
project = 'Paramiko'
|
2014-01-10 22:26:04 -05:00
|
|
|
year = datetime.now().year
|
2014-03-07 21:46:40 -05:00
|
|
|
copyright = '%d Jeff Forcier' % year
|
2014-01-10 22:26:04 -05:00
|
|
|
master_doc = 'index'
|
|
|
|
templates_path = ['_templates']
|
|
|
|
exclude_trees = ['_build']
|
|
|
|
source_suffix = '.rst'
|
|
|
|
default_role = 'obj'
|