commit a97cdf75bc15615185c08496294d90e82e8dc650 Author: Shay Carter Date: Tue Nov 24 12:42:08 2020 -0700 Initial check in for new readthedocs (rtd) branch. Purpose of this branch is to redirect the old python-awips documenation website on readthedocs to our new website on github pages. diff --git a/_templates/layout.html b/_templates/layout.html new file mode 100644 index 0000000..902345c --- /dev/null +++ b/_templates/layout.html @@ -0,0 +1,10 @@ +{% block document %} + + + + + +

Documentation for python-awips is now hosted at GitHub Pages.

+ + +{% endblock %} diff --git a/conf.py b/conf.py new file mode 100644 index 0000000..e72b38b --- /dev/null +++ b/conf.py @@ -0,0 +1,16 @@ +import sys +import os +sys.path.insert(0, os.path.abspath('.')) +sys.path.insert(0, os.path.abspath('../..')) +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', +] +templates_path = ['_templates'] +source_suffix = '.rst' +master_doc = 'index' +project = 'python-awips' +copyright = '2019, Unidata' +exclude_patterns = [] +pygments_style = 'sphinx' +html_static_path = ['_static'] diff --git a/index.rst b/index.rst new file mode 100644 index 0000000..1bf8eaa --- /dev/null +++ b/index.rst @@ -0,0 +1,3 @@ +----- +python-awips +-----