|
@@ -17,6 +17,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
project = u'Tripal'
|
|
@@ -37,8 +38,7 @@ release = u'7.x-3.x'
|
|
|
|
|
|
|
|
|
|
|
|
-extensions = [
|
|
|
-]
|
|
|
+extensions = ['breathe' ]
|
|
|
|
|
|
|
|
|
templates_path = ['_templates']
|
|
@@ -158,3 +158,20 @@ texinfo_documents = [
|
|
|
author, 'Tripal', 'One line description of project.',
|
|
|
'Miscellaneous'),
|
|
|
]
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+import subprocess, os
|
|
|
+
|
|
|
+read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
+
|
|
|
+if read_the_docs_build:
|
|
|
+
|
|
|
+ subprocess.call('cd ../; doxygen docs/tripal_doxygen.config', shell=True)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+breathe_projects = { "tripal": "xml/" }
|
|
|
+breathe_default_project = "tripal"
|
|
|
+
|