Skip to content
Snippets Groups Projects
Commit 600e96f5 authored by Jesse Mapel's avatar Jesse Mapel
Browse files

Added autodoc sphinx module to doc builds (#406)

* Added autodoc sphinx module to doc builds

* Renamed doxyfile
parent 8a9482c3
Branches
Tags
No related merge requests found
File moved
...@@ -30,8 +30,7 @@ release = 'ale.__version__' ...@@ -30,8 +30,7 @@ release = 'ale.__version__'
# Add any Sphinx extension module names here, as strings. They can be # Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones. # ones.
extensions = [ extensions = ['sphinx.ext.autodoc']
]
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ['_templates']
...@@ -63,4 +62,4 @@ import subprocess, os ...@@ -63,4 +62,4 @@ import subprocess, os
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
if read_the_docs_build: if read_the_docs_build:
subprocess.call('cd ../doxygen; doxygen', shell=True) subprocess.call('doxygen', shell=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment