paramiko/sites/shared_conf.py

42 lines
985 B
Python
Raw Permalink Normal View History

from datetime import datetime
import alabaster
# Alabaster theme + mini-extension
html_theme_path = [alabaster.get_path()]
2014-04-14 10:48:33 -04:00
extensions = ['alabaster', 'sphinx.ext.intersphinx']
2014-01-13 15:17:46 -05:00
# Paths relative to invoking conf.py - not this shared file
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',
2014-04-15 15:04:46 -04:00
'travis_button': True,
}
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'searchbox.html',
'donate.html',
]
}
2014-04-14 10:48:33 -04:00
# Everything intersphinx's to Python
intersphinx_mapping = {
'python': ('http://docs.python.org/2.6', None),
}
# Regular settings
2014-03-07 21:46:40 -05:00
project = 'Paramiko'
year = datetime.now().year
2014-03-07 21:46:40 -05:00
copyright = '%d Jeff Forcier' % year
master_doc = 'index'
templates_path = ['_templates']
exclude_trees = ['_build']
source_suffix = '.rst'
default_role = 'obj'