Skip to content

Commit 400aa30

Browse files
committed
update pyscaffold v4.5
1 parent 17a3cca commit 400aa30

15 files changed

+310
-333
lines changed

README.rst

+21-11
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,37 @@
22
ascat
33
=====
44

5-
.. image::
6-
https://github.com/TUW-GEO/ascat/actions/workflows/ascat_ubuntu.yml/badge.svg
7-
:target: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_ubuntu.yml
5+
.. image:: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_ubuntu.yml/badge.svg
6+
:alt: Linux Built Status
7+
:target: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_ubuntu.yml
88

99
.. image:: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_windows.yml/badge.svg
10-
:target: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_windows.yml
10+
:alt: Windows Built Status
11+
:target: https://github.com/TUW-GEO/ascat/actions/workflows/ascat_windows.yml
1112

1213
.. image:: https://coveralls.io/repos/github/TUW-GEO/ascat/badge.svg?branch=master
13-
:target: https://coveralls.io/github/TUW-GEO/ascat?branch=master
14+
:alt: Coveralls
15+
:target: https://coveralls.io/github/TUW-GEO/ascat?branch=master
1416

1517
.. image:: https://badge.fury.io/py/ascat.svg
18+
:alt: PyPI-Server
1619
:target: http://badge.fury.io/py/ascat
1720

1821
.. image:: https://readthedocs.org/projects/ascat/badge/?version=latest
19-
:target: http://ascat.readthedocs.org/
22+
:alt: ReadTheDocs
23+
:target: http://ascat.readthedocs.org/
2024

21-
Read and convert data acquired by ASCAT on-board the series of Metop satellites.
25+
.. image:: https://pepy.tech/badge/ascat/month
26+
:alt: Monthly Downloads
27+
:target: https://pepy.tech/project/ascat
2228

23-
Works great in combination with `pytesmo <https://github.com/TUW-GEO/pytesmo>`_.
29+
Read and visualize data from the Advanced Scatterometer (ASCAT) on-board the series of Metop satellites.
2430

2531
Citation
2632
========
2733

2834
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4610836.svg
35+
:alt: Zenodo
2936
:target: https://doi.org/10.5281/zenodo.4610836
3037

3138
If you use the software in a publication then please cite it using the Zenodo DOI.
@@ -71,8 +78,8 @@ Read ASCAT data from different sources into a common format supported by pytesmo
7178
- `EUMETSAT <https://navigator.eumetsat.int/search?query=ascat/>`_
7279
- ASCAT Soil Moisture at 12.5 km Swath Grid - Metop
7380
- ASCAT Soil Moisture at 25 km Swath Grid - Metop
74-
- ASCAT GDS Level 1 Sigma0 resampled at 12.5 km Swath Grid - Metop
75-
- ASCAT GDS Level 1 Sigma0 resampled at 25 km Swath Grid - Metop
81+
- ASCAT GDS Level 1 Sigma0 resampled at 12.5 km Swath Grid - Metop
82+
- ASCAT GDS Level 1 Sigma0 resampled at 25 km Swath Grid - Metop
7683

7784
Contribute
7885
==========
@@ -91,8 +98,11 @@ If you want to contribute please follow these steps:
9198
- Please include tests for your contributions in one of the test directories
9299
- Submit a pull request
93100

101+
102+
.. _pyscaffold-notes:
103+
94104
Note
95105
====
96106

97-
This project has been set up using PyScaffold 3.2.3. For details and usage
107+
This project has been set up using PyScaffold 4.5. For details and usage
98108
information on PyScaffold see https://pyscaffold.org/.

doc_requirements.txt

-8
This file was deleted.

docs/Makefile

+14-178
Original file line numberDiff line numberDiff line change
@@ -1,193 +1,29 @@
11
# Makefile for Sphinx documentation
22
#
33

4-
# You can set these variables from the command line.
5-
SPHINXOPTS =
6-
SPHINXBUILD = sphinx-build
7-
PAPER =
8-
BUILDDIR = ../build/sphinx/
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
910
AUTODOCDIR = api
10-
AUTODOCBUILD = sphinx-apidoc
11-
PROJECT = ascat
12-
MODULEDIR = ../src/ascat
1311

1412
# User-friendly check for sphinx-build
1513
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $?), 1)
16-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
14+
$(error "The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://sphinx-doc.org/")
1715
endif
1816

19-
# Internal variables.
20-
PAPEROPT_a4 = -D latex_paper_size=a4
21-
PAPEROPT_letter = -D latex_paper_size=letter
22-
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
23-
# the i18n builder cannot share the environment and doctrees with the others
24-
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
25-
26-
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext doc-requirements
17+
.PHONY: help clean Makefile
2718

19+
# Put it first so that "make" without argument is like "make help".
2820
help:
29-
@echo "Please use \`make <target>' where <target> is one of"
30-
@echo " html to make standalone HTML files"
31-
@echo " dirhtml to make HTML files named index.html in directories"
32-
@echo " singlehtml to make a single large HTML file"
33-
@echo " pickle to make pickle files"
34-
@echo " json to make JSON files"
35-
@echo " htmlhelp to make HTML files and a HTML help project"
36-
@echo " qthelp to make HTML files and a qthelp project"
37-
@echo " devhelp to make HTML files and a Devhelp project"
38-
@echo " epub to make an epub"
39-
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
40-
@echo " latexpdf to make LaTeX files and run them through pdflatex"
41-
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
42-
@echo " text to make text files"
43-
@echo " man to make manual pages"
44-
@echo " texinfo to make Texinfo files"
45-
@echo " info to make Texinfo files and run them through makeinfo"
46-
@echo " gettext to make PO message catalogs"
47-
@echo " changes to make an overview of all changed/added/deprecated items"
48-
@echo " xml to make Docutils-native XML files"
49-
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
50-
@echo " linkcheck to check all external links for integrity"
51-
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
21+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
5222

5323
clean:
5424
rm -rf $(BUILDDIR)/* $(AUTODOCDIR)
5525

56-
$(AUTODOCDIR): $(MODULEDIR)
57-
mkdir -p $@
58-
$(AUTODOCBUILD) -f -o $@ $^
59-
60-
doc-requirements: $(AUTODOCDIR)
61-
62-
html: doc-requirements
63-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
64-
@echo
65-
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
66-
67-
dirhtml: doc-requirements
68-
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
69-
@echo
70-
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
71-
72-
singlehtml: doc-requirements
73-
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
74-
@echo
75-
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
76-
77-
pickle: doc-requirements
78-
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
79-
@echo
80-
@echo "Build finished; now you can process the pickle files."
81-
82-
json: doc-requirements
83-
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
84-
@echo
85-
@echo "Build finished; now you can process the JSON files."
86-
87-
htmlhelp: doc-requirements
88-
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
89-
@echo
90-
@echo "Build finished; now you can run HTML Help Workshop with the" \
91-
".hhp project file in $(BUILDDIR)/htmlhelp."
92-
93-
qthelp: doc-requirements
94-
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
95-
@echo
96-
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
97-
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
98-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/$(PROJECT).qhcp"
99-
@echo "To view the help file:"
100-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/$(PROJECT).qhc"
101-
102-
devhelp: doc-requirements
103-
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
104-
@echo
105-
@echo "Build finished."
106-
@echo "To view the help file:"
107-
@echo "# mkdir -p $HOME/.local/share/devhelp/$(PROJECT)"
108-
@echo "# ln -s $(BUILDDIR)/devhelp $HOME/.local/share/devhelp/$(PROJEC)"
109-
@echo "# devhelp"
110-
111-
epub: doc-requirements
112-
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
113-
@echo
114-
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
115-
116-
patch-latex:
117-
find _build/latex -iname "*.tex" | xargs -- \
118-
sed -i'' 's~includegraphics{~includegraphics\[keepaspectratio,max size={\\textwidth}{\\textheight}\]{~g'
119-
120-
latex: doc-requirements
121-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
122-
$(MAKE) patch-latex
123-
@echo
124-
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
125-
@echo "Run \`make' in that directory to run these through (pdf)latex" \
126-
"(use \`make latexpdf' here to do that automatically)."
127-
128-
latexpdf: doc-requirements
129-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
130-
$(MAKE) patch-latex
131-
@echo "Running LaTeX files through pdflatex..."
132-
$(MAKE) -C $(BUILDDIR)/latex all-pdf
133-
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
134-
135-
latexpdfja: doc-requirements
136-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
137-
@echo "Running LaTeX files through platex and dvipdfmx..."
138-
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
139-
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
140-
141-
text: doc-requirements
142-
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
143-
@echo
144-
@echo "Build finished. The text files are in $(BUILDDIR)/text."
145-
146-
man: doc-requirements
147-
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
148-
@echo
149-
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
150-
151-
texinfo: doc-requirements
152-
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
153-
@echo
154-
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
155-
@echo "Run \`make' in that directory to run these through makeinfo" \
156-
"(use \`make info' here to do that automatically)."
157-
158-
info: doc-requirements
159-
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
160-
@echo "Running Texinfo files through makeinfo..."
161-
make -C $(BUILDDIR)/texinfo info
162-
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
163-
164-
gettext: doc-requirements
165-
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
166-
@echo
167-
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
168-
169-
changes: doc-requirements
170-
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
171-
@echo
172-
@echo "The overview file is in $(BUILDDIR)/changes."
173-
174-
linkcheck: doc-requirements
175-
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
176-
@echo
177-
@echo "Link check complete; look for any errors in the above output " \
178-
"or in $(BUILDDIR)/linkcheck/output.txt."
179-
180-
doctest: doc-requirements
181-
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
182-
@echo "Testing of doctests in the sources finished, look at the " \
183-
"results in $(BUILDDIR)/doctest/output.txt."
184-
185-
xml: doc-requirements
186-
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
187-
@echo
188-
@echo "Build finished. The XML files are in $(BUILDDIR)/xml."
189-
190-
pseudoxml: doc-requirements
191-
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
192-
@echo
193-
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
26+
# Catch-all target: route all unknown targets to Sphinx using the new
27+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
28+
%: Makefile
29+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

0 commit comments

Comments
 (0)