File tree Expand file tree Collapse file tree 2 files changed +308
-7
lines changed
Expand file tree Collapse file tree 2 files changed +308
-7
lines changed Original file line number Diff line number Diff line change 100100
101101# Immaterial toc adjustments
102102object_description_options = [
103- ("py:.*" ,
103+ (
104+ "py:.*" ,
104105 {
105106 "include_fields_in_toc" : False ,
106107 "include_rubrics_in_toc" : False
107108 }
108109 ),
109- ("py:parameter" ,
110+ (
111+ "py:parameter" ,
110112 {
111113 "include_in_toc" : False
112114 }
123125napoleon_google_docstring = False
124126napoleon_use_ivar = True
125127napoleon_type_aliases = {
126- "GeoComResponse" : "~geocompy.GeoComResponse"
128+ "GeoComResponse" : "~geocompy.GeoComResponse" ,
129+ "GsiOnlineResponse" : "~geocompy.GsiOnlineResponse" ,
130+ "datetime" : "~datetime.datetime"
127131}
128132
129133python_display_short_literal_types = True
142146 ("py:obj" , r"[a-zA-Z]{3}\.\w+" )
143147}
144148
145- # GitHub source linking
146- def linkcode_resolve (domain , info ):
149+
150+ def linkcode_resolve (domain , info ): # GitHub source linking
147151 if domain != 'py' :
148152 return None
149153 if not info ['module' ]:
@@ -154,6 +158,7 @@ def linkcode_resolve(domain, info):
154158 f"geocompy/tree/main/src/{ filename :s} .py"
155159 )
156160
161+
157162latex_documents = [
158163 (
159164 "latexindex" , "geocompy.tex" ,
You can’t perform that action at this time.
0 commit comments