py2docfx 0.1.13rc2012291__py3-none-any.whl → 0.1.13rc2016963__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,384 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright 2024 Google LLC
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+ # googleapis-common-protos documentation build configuration file
17
+ #
18
+ # This file is execfile()d with the current directory set to its
19
+ # containing dir.
20
+ #
21
+ # Note that not all possible configuration values are present in this
22
+ # autogenerated file.
23
+ #
24
+ # All configuration values have a default; values that are commented out
25
+ # serve to show the default.
26
+
27
+ import os
28
+ import shlex
29
+ import sys
30
+
31
+ # If extensions (or modules to document with autodoc) are in another directory,
32
+ # add these directories to sys.path here. If the directory is relative to the
33
+ # documentation root, use os.path.abspath to make it absolute, like shown here.
34
+ sys.path.insert(0, os.path.abspath(".."))
35
+
36
+ # For plugins that can not read conf.py.
37
+ # See also: https://github.com/docascode/sphinx-docfx-yaml/issues/85
38
+ sys.path.insert(0, os.path.abspath("."))
39
+
40
+ __version__ = ""
41
+
42
+ # -- General configuration ------------------------------------------------
43
+
44
+ # If your documentation needs a minimal Sphinx version, state it here.
45
+ needs_sphinx = "1.5.5"
46
+
47
+ # Add any Sphinx extension module names here, as strings. They can be
48
+ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
49
+ # ones.
50
+ extensions = [
51
+ "sphinx.ext.autodoc",
52
+ "sphinx.ext.autosummary",
53
+ "sphinx.ext.intersphinx",
54
+ "sphinx.ext.coverage",
55
+ "sphinx.ext.doctest",
56
+ "sphinx.ext.napoleon",
57
+ "sphinx.ext.todo",
58
+ "sphinx.ext.viewcode",
59
+ "recommonmark",
60
+ ]
61
+
62
+ # autodoc/autosummary flags
63
+ autoclass_content = "both"
64
+ autodoc_default_options = {"members": True}
65
+ autosummary_generate = True
66
+
67
+
68
+ # Add any paths that contain templates here, relative to this directory.
69
+ templates_path = ["_templates"]
70
+
71
+ # The suffix(es) of source filenames.
72
+ # You can specify multiple suffix as a list of string:
73
+ # source_suffix = ['.rst', '.md']
74
+ source_suffix = [".rst", ".md"]
75
+
76
+ # The encoding of source files.
77
+ # source_encoding = 'utf-8-sig'
78
+
79
+ # The root toctree document.
80
+ root_doc = "index"
81
+
82
+ # General information about the project.
83
+ project = "googleapis-common-protos"
84
+ copyright = "2019, Google"
85
+ author = "Google APIs"
86
+
87
+ # The version info for the project you're documenting, acts as replacement for
88
+ # |version| and |release|, also used in various other places throughout the
89
+ # built documents.
90
+ #
91
+ # The full version, including alpha/beta/rc tags.
92
+ release = __version__
93
+ # The short X.Y version.
94
+ version = ".".join(release.split(".")[0:2])
95
+
96
+ # The language for content autogenerated by Sphinx. Refer to documentation
97
+ # for a list of supported languages.
98
+ #
99
+ # This is also used if you do content translation via gettext catalogs.
100
+ # Usually you set "language" from the command line for these cases.
101
+ language = None
102
+
103
+ # There are two options for replacing |today|: either, you set today to some
104
+ # non-false value, then it is used:
105
+ # today = ''
106
+ # Else, today_fmt is used as the format for a strftime call.
107
+ # today_fmt = '%B %d, %Y'
108
+
109
+ # List of patterns, relative to source directory, that match files and
110
+ # directories to ignore when looking for source files.
111
+ exclude_patterns = [
112
+ "_build",
113
+ "**/.nox/**/*",
114
+ "samples/AUTHORING_GUIDE.md",
115
+ "samples/CONTRIBUTING.md",
116
+ "samples/snippets/README.rst",
117
+ ]
118
+
119
+ # The reST default role (used for this markup: `text`) to use for all
120
+ # documents.
121
+ # default_role = None
122
+
123
+ # If true, '()' will be appended to :func: etc. cross-reference text.
124
+ # add_function_parentheses = True
125
+
126
+ # If true, the current module name will be prepended to all description
127
+ # unit titles (such as .. function::).
128
+ # add_module_names = True
129
+
130
+ # If true, sectionauthor and moduleauthor directives will be shown in the
131
+ # output. They are ignored by default.
132
+ # show_authors = False
133
+
134
+ # The name of the Pygments (syntax highlighting) style to use.
135
+ pygments_style = "sphinx"
136
+
137
+ # A list of ignored prefixes for module index sorting.
138
+ # modindex_common_prefix = []
139
+
140
+ # If true, keep warnings as "system message" paragraphs in the built documents.
141
+ # keep_warnings = False
142
+
143
+ # If true, `todo` and `todoList` produce output, else they produce nothing.
144
+ todo_include_todos = True
145
+
146
+
147
+ # -- Options for HTML output ----------------------------------------------
148
+
149
+ # The theme to use for HTML and HTML Help pages. See the documentation for
150
+ # a list of builtin themes.
151
+ html_theme = "alabaster"
152
+
153
+ # Theme options are theme-specific and customize the look and feel of a theme
154
+ # further. For a list of options available for each theme, see the
155
+ # documentation.
156
+ html_theme_options = {
157
+ "description": "Google Cloud Client Libraries for googleapis-common-protos",
158
+ "github_user": "googleapis",
159
+ "github_repo": "google-cloud-python",
160
+ "github_banner": True,
161
+ "font_family": "'Roboto', Georgia, sans",
162
+ "head_font_family": "'Roboto', Georgia, serif",
163
+ "code_font_family": "'Roboto Mono', 'Consolas', monospace",
164
+ }
165
+
166
+ # Add any paths that contain custom themes here, relative to this directory.
167
+ # html_theme_path = []
168
+
169
+ # The name for this set of Sphinx documents. If None, it defaults to
170
+ # "<project> v<release> documentation".
171
+ # html_title = None
172
+
173
+ # A shorter title for the navigation bar. Default is the same as html_title.
174
+ # html_short_title = None
175
+
176
+ # The name of an image file (relative to this directory) to place at the top
177
+ # of the sidebar.
178
+ # html_logo = None
179
+
180
+ # The name of an image file (within the static path) to use as favicon of the
181
+ # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
182
+ # pixels large.
183
+ # html_favicon = None
184
+
185
+ # Add any paths that contain custom static files (such as style sheets) here,
186
+ # relative to this directory. They are copied after the builtin static files,
187
+ # so a file named "default.css" will overwrite the builtin "default.css".
188
+ html_static_path = ["_static"]
189
+
190
+ # Add any extra paths that contain custom files (such as robots.txt or
191
+ # .htaccess) here, relative to this directory. These files are copied
192
+ # directly to the root of the documentation.
193
+ # html_extra_path = []
194
+
195
+ # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
196
+ # using the given strftime format.
197
+ # html_last_updated_fmt = '%b %d, %Y'
198
+
199
+ # If true, SmartyPants will be used to convert quotes and dashes to
200
+ # typographically correct entities.
201
+ # html_use_smartypants = True
202
+
203
+ # Custom sidebar templates, maps document names to template names.
204
+ # html_sidebars = {}
205
+
206
+ # Additional templates that should be rendered to pages, maps page names to
207
+ # template names.
208
+ # html_additional_pages = {}
209
+
210
+ # If false, no module index is generated.
211
+ # html_domain_indices = True
212
+
213
+ # If false, no index is generated.
214
+ # html_use_index = True
215
+
216
+ # If true, the index is split into individual pages for each letter.
217
+ # html_split_index = False
218
+
219
+ # If true, links to the reST sources are added to the pages.
220
+ # html_show_sourcelink = True
221
+
222
+ # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
223
+ # html_show_sphinx = True
224
+
225
+ # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
226
+ # html_show_copyright = True
227
+
228
+ # If true, an OpenSearch description file will be output, and all pages will
229
+ # contain a <link> tag referring to it. The value of this option must be the
230
+ # base URL from which the finished HTML is served.
231
+ # html_use_opensearch = ''
232
+
233
+ # This is the file name suffix for HTML files (e.g. ".xhtml").
234
+ # html_file_suffix = None
235
+
236
+ # Language to be used for generating the HTML full-text search index.
237
+ # Sphinx supports the following languages:
238
+ # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
239
+ # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
240
+ # html_search_language = 'en'
241
+
242
+ # A dictionary with options for the search language support, empty by default.
243
+ # Now only 'ja' uses this config value
244
+ # html_search_options = {'type': 'default'}
245
+
246
+ # The name of a javascript file (relative to the configuration directory) that
247
+ # implements a search results scorer. If empty, the default will be used.
248
+ # html_search_scorer = 'scorer.js'
249
+
250
+ # Output file base name for HTML help builder.
251
+ htmlhelp_basename = "googleapis-common-protos-doc"
252
+
253
+ # -- Options for warnings ------------------------------------------------------
254
+
255
+
256
+ suppress_warnings = [
257
+ # Temporarily suppress this to avoid "more than one target found for
258
+ # cross-reference" warning, which are intractable for us to avoid while in
259
+ # a mono-repo.
260
+ # See https://github.com/sphinx-doc/sphinx/blob
261
+ # /2a65ffeef5c107c19084fabdd706cdff3f52d93c/sphinx/domains/python.py#L843
262
+ "ref.python"
263
+ ]
264
+
265
+ # -- Options for LaTeX output ---------------------------------------------
266
+
267
+ latex_elements = {
268
+ # The paper size ('letterpaper' or 'a4paper').
269
+ #'papersize': 'letterpaper',
270
+ # The font size ('10pt', '11pt' or '12pt').
271
+ #'pointsize': '10pt',
272
+ # Additional stuff for the LaTeX preamble.
273
+ #'preamble': '',
274
+ # Latex figure (float) alignment
275
+ #'figure_align': 'htbp',
276
+ }
277
+
278
+ # Grouping the document tree into LaTeX files. List of tuples
279
+ # (source start file, target name, title,
280
+ # author, documentclass [howto, manual, or own class]).
281
+ latex_documents = [
282
+ (
283
+ root_doc,
284
+ "googleapis-common-protos.tex",
285
+ "googleapis-common-protos Documentation",
286
+ author,
287
+ "manual",
288
+ )
289
+ ]
290
+
291
+ # The name of an image file (relative to this directory) to place at the top of
292
+ # the title page.
293
+ # latex_logo = None
294
+
295
+ # For "manual" documents, if this is true, then toplevel headings are parts,
296
+ # not chapters.
297
+ # latex_use_parts = False
298
+
299
+ # If true, show page references after internal links.
300
+ # latex_show_pagerefs = False
301
+
302
+ # If true, show URL addresses after external links.
303
+ # latex_show_urls = False
304
+
305
+ # Documents to append as an appendix to all manuals.
306
+ # latex_appendices = []
307
+
308
+ # If false, no module index is generated.
309
+ # latex_domain_indices = True
310
+
311
+
312
+ # -- Options for manual page output ---------------------------------------
313
+
314
+ # One entry per manual page. List of tuples
315
+ # (source start file, name, description, authors, manual section).
316
+ man_pages = [
317
+ (
318
+ root_doc,
319
+ "googleapis-common-protos",
320
+ "googleapis-common-protos Documentation",
321
+ [author],
322
+ 1,
323
+ )
324
+ ]
325
+
326
+ # If true, show URL addresses after external links.
327
+ # man_show_urls = False
328
+
329
+
330
+ # -- Options for Texinfo output -------------------------------------------
331
+
332
+ # Grouping the document tree into Texinfo files. List of tuples
333
+ # (source start file, target name, title, author,
334
+ # dir menu entry, description, category)
335
+ texinfo_documents = [
336
+ (
337
+ root_doc,
338
+ "googleapis-common-protos",
339
+ "googleapis-common-protos Documentation",
340
+ author,
341
+ "googleapis-common-protos",
342
+ "googleapis-common-protos Library",
343
+ "APIs",
344
+ )
345
+ ]
346
+
347
+ # Documents to append as an appendix to all manuals.
348
+ # texinfo_appendices = []
349
+
350
+ # If false, no module index is generated.
351
+ # texinfo_domain_indices = True
352
+
353
+ # How to display URL addresses: 'footnote', 'no', or 'inline'.
354
+ # texinfo_show_urls = 'footnote'
355
+
356
+ # If true, do not generate a @detailmenu in the "Top" node's menu.
357
+ # texinfo_no_detailmenu = False
358
+
359
+
360
+ # Example configuration for intersphinx: refer to the Python standard library.
361
+ intersphinx_mapping = {
362
+ "python": ("https://python.readthedocs.org/en/latest/", None),
363
+ "google-auth": ("https://googleapis.dev/python/google-auth/latest/", None),
364
+ "google.api_core": (
365
+ "https://googleapis.dev/python/google-api-core/latest/",
366
+ None,
367
+ ),
368
+ "grpc": ("https://grpc.github.io/grpc/python/", None),
369
+ "proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None),
370
+ "protobuf": ("https://googleapis.dev/python/protobuf/latest/", None),
371
+ }
372
+
373
+
374
+ # Napoleon settings
375
+ napoleon_google_docstring = True
376
+ napoleon_numpy_docstring = True
377
+ napoleon_include_private_with_doc = False
378
+ napoleon_include_special_with_doc = True
379
+ napoleon_use_admonition_for_examples = False
380
+ napoleon_use_admonition_for_notes = False
381
+ napoleon_use_admonition_for_references = False
382
+ napoleon_use_ivar = False
383
+ napoleon_use_param = True
384
+ napoleon_use_rtype = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: py2docfx
3
- Version: 0.1.13rc2012291
3
+ Version: 0.1.13rc2016963
4
4
  Summary: A package built based on Sphinx which download source code package and generate yaml files supported by docfx.
5
5
  Author: Microsoft Corporation
6
6
  License: MIT License
@@ -2160,6 +2160,7 @@ py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/name.py,sha256=MYCxCSTQT
2160
2160
  py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/ocsp.py,sha256=vbrg3p1hBJQEEFIZ35GHcjbGwTrsxPhlot-OVpyP-C8,11390
2161
2161
  py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/oid.py,sha256=X8EbhkRTLrGuv9vHZSGqPd9zpvRVsonU_joWAL5LLY8,885
2162
2162
  py2docfx/venv/venv1/Lib/site-packages/cryptography/x509/verification.py,sha256=alfx3VaTSb2bMz7_7s788oL90vzgHwBjVINssdz0Gv0,796
2163
+ py2docfx/venv/venv1/Lib/site-packages/docs/conf.py,sha256=wWmiclfhoUtsbchRP_oRf1aJdJURdhQUEES674mVI4U,12453
2163
2164
  py2docfx/venv/venv1/Lib/site-packages/google/api/annotations_pb2.py,sha256=N4cPaBC9BCIlQOPWOQdASPi2eD3e4d6TkfdFtLYKW1M,2182
2164
2165
  py2docfx/venv/venv1/Lib/site-packages/google/api/auth_pb2.py,sha256=0M9Gb8InDi8Q07RSMmUtvVyTkaijVkhyj8Vga2XjsOQ,3601
2165
2166
  py2docfx/venv/venv1/Lib/site-packages/google/api/backend_pb2.py,sha256=pxhfZZJJM9NOtv1aLVYbtYAqrMzgUkD4GCMopWmOh9M,3774
@@ -4194,7 +4195,7 @@ py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_addtas
4194
4195
  py2docfx/venv/venv1/Lib/site-packages/win32comext/taskscheduler/test/test_localsystem.py,sha256=08ojAS48W6RLsUbRD45j0SJhg_Y2NFHZT6qjT4Vrig0,75
4195
4196
  py2docfx/venv/venv1/Scripts/pywin32_postinstall.py,sha256=u95n7QQUxpCjrZistYE-3gN451zXzopuJna8cXRQ4Jw,28115
4196
4197
  py2docfx/venv/venv1/Scripts/pywin32_testall.py,sha256=-6yvZmd2lPQc4e8i6PgLsr_totF6mScvoq0Jqr0V2fM,3844
4197
- py2docfx-0.1.13rc2012291.dist-info/METADATA,sha256=dXsP4hYeExh5ntwJFBkAGwiIoooHOysY1u-e2I7fEzA,599
4198
- py2docfx-0.1.13rc2012291.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
4199
- py2docfx-0.1.13rc2012291.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
4200
- py2docfx-0.1.13rc2012291.dist-info/RECORD,,
4198
+ py2docfx-0.1.13rc2016963.dist-info/METADATA,sha256=Jax3MrNenNRzT4um3CTKB_wGYJFt2EVipGspg7vNLOY,599
4199
+ py2docfx-0.1.13rc2016963.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
4200
+ py2docfx-0.1.13rc2016963.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
4201
+ py2docfx-0.1.13rc2016963.dist-info/RECORD,,