diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-29 14:38:58 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-29 14:38:58 -0800 |
commit | c636b273daf657eb05041ce2528959910e7db162 (patch) | |
tree | ca4ce0e03286b5d6c9fbcac8d9db6d4e2d5bf1ef /sites/shared_conf.py | |
parent | 473a9cdf5b22c8bbc4d4e95d419c8bd153f05e21 (diff) | |
parent | b8d1724f5714c27ad02ae013e87f5531aec041ea (diff) |
Merge branch '1.10' into 1.11
Conflicts:
dev-requirements.txt
tox.ini
Diffstat (limited to 'sites/shared_conf.py')
-rw-r--r-- | sites/shared_conf.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sites/shared_conf.py b/sites/shared_conf.py new file mode 100644 index 00000000..2b98654f --- /dev/null +++ b/sites/shared_conf.py @@ -0,0 +1,40 @@ +from datetime import datetime +import os +import sys + +import alabaster + + +# Alabaster theme +html_theme_path = [alabaster.get_path()] +# Paths relative to invoking conf.py - not this shared file +html_static_path = ['../_shared_static'] +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', + + 'link': '#3782BE', + 'link_hover': '#3782BE', +} +html_sidebars = { + '**': [ + 'about.html', + 'navigation.html', + 'searchbox.html', + 'donate.html', + ] +} + +# Regular settings +project = u'Paramiko' +year = datetime.now().year +copyright = u'2013-%d Jeff Forcier, 2003-2012 Robey Pointer' % year +master_doc = 'index' +templates_path = ['_templates'] +exclude_trees = ['_build'] +source_suffix = '.rst' +default_role = 'obj' |