OLD | NEW |
(Empty) | |
| 1 # -*- coding: utf-8 -*- |
| 2 |
| 3 import os |
| 4 import boto |
| 5 |
| 6 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo'] |
| 7 autoclass_content="both" |
| 8 templates_path = ['_templates'] |
| 9 source_suffix = '.rst' |
| 10 master_doc = 'index' |
| 11 project = u'boto' |
| 12 copyright = u'2009,2010, Mitch Garnaat' |
| 13 version = boto.__version__ |
| 14 exclude_trees = [] |
| 15 pygments_style = 'sphinx' |
| 16 html_theme = 'boto_theme' |
| 17 html_theme_path = ["."] |
| 18 html_static_path = ['_static'] |
| 19 htmlhelp_basename = 'botodoc' |
| 20 latex_documents = [ |
| 21 ('index', 'boto.tex', u'boto Documentation', |
| 22 u'Mitch Garnaat', 'manual'), |
| 23 ] |
| 24 intersphinx_mapping = {'http://docs.python.org/': None} |
| 25 |
| 26 try: |
| 27 release = os.environ.get('SVN_REVISION', 'HEAD') |
| 28 print release |
| 29 except Exception, e: |
| 30 print e |
| 31 |
| 32 html_title = "boto v%s" % version |
OLD | NEW |