mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
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.
This commit is contained in:
commit
a97cdf75bc
3 changed files with 29 additions and 0 deletions
10
_templates/layout.html
Normal file
10
_templates/layout.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{% block document %}
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Refresh" content="0; url=https://unidata.github.io/python-awips" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Documentation for python-awips is now hosted at <a href="https://unidata.github.io/python-awips">GitHub Pages</a>.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
{% endblock %}
|
16
conf.py
Normal file
16
conf.py
Normal file
|
@ -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']
|
3
index.rst
Normal file
3
index.rst
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-----
|
||||||
|
python-awips
|
||||||
|
-----
|
Loading…
Add table
Reference in a new issue