File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 14
14
15
15
.PHONY : help Makefile
16
16
17
+ clean :
18
+ rm -rf build
19
+ rm -rf source/generated
20
+ rm -rf source/gallery
21
+ rm -rf source/autoapi
22
+ rm -rf source/sg_execution_times.rst
23
+ @$(SPHINXBUILD ) -M $@ " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) clean
24
+
17
25
# Catch-all target: route all unknown targets to Sphinx using the new
18
26
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19
27
% : Makefile
Original file line number Diff line number Diff line change @@ -13,17 +13,6 @@ Top-level API
13
13
from_dataframe
14
14
trajectory_dict_to_dataset (deprecated)
15
15
16
- .. Geometries
17
- .. ----------
18
- .. .. autosummary::
19
- .. :toctree: generated/
20
-
21
- .. geometry.decode_geometries
22
- .. geometry.encode_geometries
23
- .. geometry.shapely_to_cf
24
- .. geometry.cf_to_shapely
25
- .. geometry.GeometryNames
26
-
27
16
.. currentmodule :: xarray
28
17
29
18
.. DataArray
Original file line number Diff line number Diff line change 1
1
import os , sys
2
2
sys .path .insert (0 , os .path .abspath ('../..' ))
3
3
4
+ import trajan # noqa
5
+
4
6
import sphinx_autosummary_accessors
5
7
# Configuration file for the Sphinx documentation builder.
6
8
7
9
# -- Project information
8
10
9
11
project = 'TrajAn'
10
- copyright = '2022-2023 , G. Hope and K. F. Dagestad'
12
+ copyright = '2022-2024 , G. Hope and K. F. Dagestad'
11
13
author = 'G. Hope and K. F. Dagestad'
12
14
13
15
release = 'latest (git / main)'
70
72
"doc_path" : "docs" ,
71
73
}
72
74
75
+ html_theme_options = {
76
+ "use_edit_page_button" : True ,
77
+ }
78
+
73
79
autosummary_generate = True
74
80
75
81
autodoc_typehints = "description"
You can’t perform that action at this time.
0 commit comments