|
@@ -0,0 +1,181 @@
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+import sphinx_rtd_theme
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+extensions = [
|
|
|
+ 'sphinx.ext.autodoc',
|
|
|
+ 'sphinx.ext.intersphinx',
|
|
|
+ 'sphinx.ext.todo',
|
|
|
+]
|
|
|
+
|
|
|
+
|
|
|
+templates_path = ['templates']
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+source_suffix = '.rst'
|
|
|
+
|
|
|
+
|
|
|
+master_doc = 'index'
|
|
|
+
|
|
|
+
|
|
|
+project = 'digilib'
|
|
|
+copyright = '2017, Digital'
|
|
|
+author = 'Digital'
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+version = 'unreleased'
|
|
|
+
|
|
|
+release = 'unreleased'
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+language = None
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+exclude_patterns = []
|
|
|
+
|
|
|
+
|
|
|
+pygments_style = 'sphinx'
|
|
|
+
|
|
|
+
|
|
|
+todo_include_todos = True
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+html_theme = 'sphinx_rtd_theme'
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+html_static_path = ['static']
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+htmlhelp_basename = 'BeeWatchdoc'
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+latex_elements = {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+latex_documents = [
|
|
|
+ (master_doc, 'BeeWatch.tex', 'BeeWatch Documentation',
|
|
|
+ 'Digital', 'manual'),
|
|
|
+]
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+man_pages = [
|
|
|
+ (master_doc, 'beewatch', 'BeeWatch Documentation',
|
|
|
+ [author], 1)
|
|
|
+]
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+texinfo_documents = [
|
|
|
+ (master_doc, 'BeeWatch', 'BeeWatch Documentation',
|
|
|
+ author, 'BeeWatch', 'One line description of project.',
|
|
|
+ 'Miscellaneous'),
|
|
|
+]
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+intersphinx_mapping = {'https://docs.python.org/': None}
|