py2docfx 0.1.13rc2012291__py3-none-any.whl → 0.1.14.dev2015452__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.
@@ -91,9 +91,9 @@ async def install_converter_requirement_async(executable: str):
91
91
  async def install_required_packages(
92
92
  executable: str, required_package_list: list[PackageInfo], github_token: str, ado_token: str):
93
93
  for package in required_package_list:
94
- # TODO: create a git clone async function and use it here, check if it already exists
95
- # if package.install_type == package.InstallType.SOURCE_CODE:
96
- # get_source(package, idx, vststoken=ado_token, githubtoken=github_token)
94
+ idx = required_package_list.index(package)
95
+ if package.install_type == package.InstallType.SOURCE_CODE:
96
+ await get_source(executable, package, idx, vststoken=ado_token, githubtoken=github_token, is_required_pkg=True)
97
97
  package_name, options = package.get_install_command()
98
98
  pip_cmd = PIP_INSTALL_COMMAND + PIP_INSTALL_VENV_COMMON_OPTIONS + options + [package_name]
99
99
  py2docfx_logger = get_logger(__name__)
@@ -8,6 +8,7 @@ import py2docfx.convert_prepare.pip_utils as pip_utils
8
8
  import py2docfx.convert_prepare.pack as pack
9
9
  from py2docfx.docfx_yaml.logger import get_logger
10
10
  from py2docfx.convert_prepare.constants import TARGET_REPO, SOURCE_REPO, DIST_TEMP
11
+ from py2docfx.convert_prepare.install_package import install_package
11
12
  from py2docfx.convert_prepare.package_info import PackageInfo
12
13
  from py2docfx.convert_prepare.source import Source
13
14
 
@@ -72,9 +73,11 @@ def update_package_info(executable: str, pkg: PackageInfo, source_folder: str):
72
73
  source_folder=source_folder, yaml_output_folder=yaml_output_folder, package_name=pkg.name
73
74
  )
74
75
 
75
- async def get_source(executable: str, pkg: PackageInfo, cnt: int, vststoken=None, githubtoken=None):
76
+ async def get_source(executable: str, pkg: PackageInfo, cnt: int, vststoken=None, githubtoken=None, is_required_pkg=False):
76
77
  py2docfx_logger = get_logger(__name__)
77
78
  path_cnt = str(cnt)
79
+ if is_required_pkg:
80
+ path_cnt = "required_" + path_cnt
78
81
  dist_dir = path.join(DIST_TEMP, path_cnt)
79
82
 
80
83
  if pkg.install_type == PackageInfo.InstallType.SOURCE_CODE:
@@ -87,12 +87,12 @@ async def run_converter(package_name: str,
87
87
  # TODO: update generate_conf to replace "yaml_builder" with "py2docfx.docfx_yaml.yaml_builder"
88
88
  # then no need to manually add docfx_yaml to path
89
89
  package_root_parent = os.path.join(PACKAGE_ROOT, 'docfx_yaml')
90
+ os.environ['PROCESSING_PACKAGE_NAME'] = package_name
90
91
  env_tmp = os.environ.copy()
91
92
  if os.name == 'nt' : # TODO: may need to add basevenv site-packages if not work
92
93
  env_tmp["PYTHONPATH"] = f"{extra_package_path};{package_root_parent};"
93
94
  else:
94
95
  env_tmp["PYTHONPATH"] = f"{extra_package_path}:{package_root_parent}:"
95
- os.environ['PROCESSING_PACKAGE_NAME'] = package_name
96
96
  proc = await asyncio.create_subprocess_exec(
97
97
  executable, *sphinx_param,
98
98
  cwd=PACKAGE_ROOT,
@@ -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,10 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: py2docfx
3
- Version: 0.1.13rc2012291
3
+ Version: 0.1.14.dev2015452
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
7
- Classifier: Programming Language :: Python :: 3.9
8
7
  Classifier: Programming Language :: Python :: 3.10
9
8
  Classifier: Programming Language :: Python :: 3.11
10
9
  Classifier: Programming Language :: Python :: 3.12
@@ -3,10 +3,10 @@ py2docfx/__main__.py,sha256=DWLEx3XbEmDbGrwe1QWm5dBW_a8FJdzp_7uQeXaEgN0,5928
3
3
  py2docfx/convert_prepare/__init__.py,sha256=XxtxrP0kmW3ZBHIAoxsPDEHzcgeC0WSnole8Lk6CjKs,11
4
4
  py2docfx/convert_prepare/arg_parser.py,sha256=Wa1iK8a0Gb3QqaS4X7nUPGvh-7mWhuBS9IVbmnjC770,7606
5
5
  py2docfx/convert_prepare/constants.py,sha256=RC5DqNkqWvx4hb91FrajZ1R9dBFLxcPyoEJ43jdm36E,102
6
- py2docfx/convert_prepare/environment.py,sha256=ClUnNHehYjxMwS50cqnCQO5vHCQaA289opSdfhkOARc,7293
6
+ py2docfx/convert_prepare/environment.py,sha256=CF8g2hnpwFXsTfvp1O8lwYpR848iCK8bDM2UAWqibEQ,7286
7
7
  py2docfx/convert_prepare/generate_conf.py,sha256=wqs6iyElzJarH-20_qEL9zvZvt5xfBMsGXSXPSZy6wg,2295
8
8
  py2docfx/convert_prepare/generate_document.py,sha256=iTOCMBwkfvZEj5dlEGUq4qynUodaYxJuIrG9R5eGk38,2949
9
- py2docfx/convert_prepare/get_source.py,sha256=Sw5QMWWbKLSznHgNu7JLSW0Wy_FEk0uR_IaKKSKUCl4,5280
9
+ py2docfx/convert_prepare/get_source.py,sha256=p7ktERW-OtA02O1RnikKb8EYmuUVKrqAlznOA-IvCDw,5441
10
10
  py2docfx/convert_prepare/git.py,sha256=Qb6uexUo3KKwp2Hq9Q27gMU4Z2P8ZBk7JcSmxBfFCBY,6491
11
11
  py2docfx/convert_prepare/install_package.py,sha256=aJxQBwLRPTIKpdtLVl-SaXPaF_OX_H1ZtWmcKD8Zzuk,274
12
12
  py2docfx/convert_prepare/pack.py,sha256=Jjj9ps8ESoKUFmSk6VgNmxOwMhuwirnQ-rhqigH-4VY,1578
@@ -17,7 +17,7 @@ py2docfx/convert_prepare/paths.py,sha256=964RX81Qf__rzXgEATfqBNFCKTYVjLt9J7WCz2T
17
17
  py2docfx/convert_prepare/pip_utils.py,sha256=Y_xmIE0Ld-gXgR8rkXSfj-AMh1bcUJvscMgSdNZyPQU,2138
18
18
  py2docfx/convert_prepare/repo_info.py,sha256=6ASJlhBwf6vZTSENgrWCVlJjlJVhuBxzdQyWEdWAC4c,117
19
19
  py2docfx/convert_prepare/source.py,sha256=6-A7oof3-WAQcQZZVpT9pKiFLH4CCIZeYqq0MN0O3gw,1710
20
- py2docfx/convert_prepare/sphinx_caller.py,sha256=K7HZddkzENu_QkOrgoKeILsXkRmyQrpUXhRsow-51I4,4696
20
+ py2docfx/convert_prepare/sphinx_caller.py,sha256=iyalaxdhcMpiUsPEziEgH7v7cd5Zpx8KeD11iCULGbc,4696
21
21
  py2docfx/convert_prepare/subpackage.py,sha256=mXAi_07pXvnPkSLZfykDh_7VeFxfLy74pYlzhMO8N_Q,5183
22
22
  py2docfx/convert_prepare/utils.py,sha256=TwfDjIqIx_nAoSeQ-LX30h_-d96WhPQcAu7P8N_tSjM,1618
23
23
  py2docfx/convert_prepare/conf_templates/conf.py_t,sha256=8zxvY1WiG-z2aiSNDY0719C08QxZLXXEMwKfYSGN0ZE,3811
@@ -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.14.dev2015452.dist-info/METADATA,sha256=OPrh-FR32JhrA5urolcBvqEOAhlOqXzTWTTQxuh1yQM,550
4199
+ py2docfx-0.1.14.dev2015452.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
4200
+ py2docfx-0.1.14.dev2015452.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
4201
+ py2docfx-0.1.14.dev2015452.dist-info/RECORD,,