py2docfx 0.1.11.dev1860114__py3-none-any.whl → 0.1.11.dev1869610__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.
- py2docfx/__main__.py +0 -3
- py2docfx/convert_prepare/pip_utils.py +12 -9
- py2docfx/convert_prepare/sphinx_caller.py +2 -1
- {py2docfx-0.1.11.dev1860114.dist-info → py2docfx-0.1.11.dev1869610.dist-info}/METADATA +1 -1
- {py2docfx-0.1.11.dev1860114.dist-info → py2docfx-0.1.11.dev1869610.dist-info}/RECORD +7 -7
- {py2docfx-0.1.11.dev1860114.dist-info → py2docfx-0.1.11.dev1869610.dist-info}/WHEEL +0 -0
- {py2docfx-0.1.11.dev1860114.dist-info → py2docfx-0.1.11.dev1869610.dist-info}/top_level.txt +0 -0
py2docfx/__main__.py
CHANGED
@@ -3,11 +3,8 @@ import argparse
|
|
3
3
|
import os
|
4
4
|
import shutil
|
5
5
|
import sys
|
6
|
-
import threading
|
7
6
|
import time
|
8
7
|
|
9
|
-
sys.path.insert(0, "C:\\MsCodeRepo\\py2docfx\\src")
|
10
|
-
|
11
8
|
from py2docfx import PACKAGE_ROOT
|
12
9
|
from py2docfx.convert_prepare.environment import VirtualEnvironmentManager
|
13
10
|
from py2docfx.convert_prepare.generate_document import generate_document
|
@@ -3,12 +3,12 @@ from py2docfx import PACKAGE_ROOT
|
|
3
3
|
PYPI = "pypi"
|
4
4
|
|
5
5
|
pip_install_common_options = [
|
6
|
-
|
6
|
+
"--no-cache-dir",
|
7
7
|
"--quiet",
|
8
|
-
"--no-compile",
|
8
|
+
#"--no-compile",
|
9
9
|
"--no-warn-conflicts",
|
10
10
|
"--disable-pip-version-check",
|
11
|
-
|
11
|
+
"--verbose",
|
12
12
|
]
|
13
13
|
|
14
14
|
|
@@ -26,12 +26,15 @@ def download(package_name, path, executable, extra_index_url=None, prefer_source
|
|
26
26
|
|
27
27
|
|
28
28
|
def install(package_name, options, executable, quiet_install=True):
|
29
|
-
|
30
|
-
|
31
|
-
"
|
32
|
-
|
29
|
+
install_param = [
|
30
|
+
executable,
|
31
|
+
"-m"
|
32
|
+
"pip",
|
33
|
+
"install",
|
34
|
+
package_name
|
35
|
+
]
|
33
36
|
|
34
37
|
if quiet_install:
|
35
|
-
subprocess.run(
|
38
|
+
subprocess.run(install_param + pip_install_common_options, check=True, cwd=PACKAGE_ROOT)
|
36
39
|
else:
|
37
|
-
subprocess.run(
|
40
|
+
subprocess.run(install_param, check=True, cwd=PACKAGE_ROOT)
|
@@ -79,7 +79,8 @@ def run_converter(rst_path, out_path, executable, conf_path = None):
|
|
79
79
|
if not executable:
|
80
80
|
raise ValueError("Can't get the executable binary for the Python interpreter.")
|
81
81
|
sphinx_param = [
|
82
|
-
executable,
|
82
|
+
executable,
|
83
|
+
sphinx_build_path,
|
83
84
|
rst_path,
|
84
85
|
outdir,
|
85
86
|
'-c', conf_path or rst_path,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: py2docfx
|
3
|
-
Version: 0.1.11.
|
3
|
+
Version: 0.1.11.dev1869610
|
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
|
@@ -1,5 +1,5 @@
|
|
1
1
|
py2docfx/__init__.py,sha256=kPRhPGPC1JknDotkksG428c1iIgfFr_4_7Jm-llrowY,72
|
2
|
-
py2docfx/__main__.py,sha256=
|
2
|
+
py2docfx/__main__.py,sha256=_FCsC7Gt7WnOGb4ZTAAsd5JIDuuLNQm1CNlcGPv82y0,12157
|
3
3
|
py2docfx/convert_prepare/__init__.py,sha256=XxtxrP0kmW3ZBHIAoxsPDEHzcgeC0WSnole8Lk6CjKs,11
|
4
4
|
py2docfx/convert_prepare/environment.py,sha256=r_Jp3hL_wGsM0ZkliFjJOC_jiFbEh90Wmw2ZXhn_MwI,2955
|
5
5
|
py2docfx/convert_prepare/generate_conf.py,sha256=wqs6iyElzJarH-20_qEL9zvZvt5xfBMsGXSXPSZy6wg,2295
|
@@ -12,10 +12,10 @@ py2docfx/convert_prepare/package_info.py,sha256=vRkFKuBxxIm4yyb2daWTzdISma8pL-RM
|
|
12
12
|
py2docfx/convert_prepare/package_info_extra_settings.py,sha256=u5B5e8hc0m9PA_-0kJzq1LtKn-xzZlucwXHTFy49mDg,1475
|
13
13
|
py2docfx/convert_prepare/params.py,sha256=PXMB8pLtb4XbfI322avA47q0AO-TyBE6kZf7FU8I6v4,1771
|
14
14
|
py2docfx/convert_prepare/paths.py,sha256=964RX81Qf__rzXgEATfqBNFCKTYVjLt9J7WCz2TnNdc,485
|
15
|
-
py2docfx/convert_prepare/pip_utils.py,sha256=
|
15
|
+
py2docfx/convert_prepare/pip_utils.py,sha256=qA_bMoORlFnKriIqGohbskYIwLfslXpWJkwTOQo8H2A,1267
|
16
16
|
py2docfx/convert_prepare/repo_info.py,sha256=6ASJlhBwf6vZTSENgrWCVlJjlJVhuBxzdQyWEdWAC4c,117
|
17
17
|
py2docfx/convert_prepare/source.py,sha256=6-A7oof3-WAQcQZZVpT9pKiFLH4CCIZeYqq0MN0O3gw,1710
|
18
|
-
py2docfx/convert_prepare/sphinx_caller.py,sha256=
|
18
|
+
py2docfx/convert_prepare/sphinx_caller.py,sha256=JUafEpC2L-S3lZDpRwRFPhSzD-2EzFA8CPel8rnSA4s,4448
|
19
19
|
py2docfx/convert_prepare/subpackage.py,sha256=mXAi_07pXvnPkSLZfykDh_7VeFxfLy74pYlzhMO8N_Q,5183
|
20
20
|
py2docfx/convert_prepare/conf_templates/conf.py_t,sha256=VL5K6xUTIw2cb4GFjDXu5iCZFPA2Kb36KLvier78HFg,3811
|
21
21
|
py2docfx/convert_prepare/conf_templates/master_doc.rst_t,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1883,7 +1883,7 @@ py2docfx/venv/0/Scripts/rst2s5.py,sha256=qup0-LMkBGLuh6Bj-1n8ucEVc5T8ANpqL0Pscmp
|
|
1883
1883
|
py2docfx/venv/0/Scripts/rst2xetex.py,sha256=FNBX2UuBN3vqJQss_DdqjMBSU5BQmOFGLOZV8DSNAuk,905
|
1884
1884
|
py2docfx/venv/0/Scripts/rst2xml.py,sha256=7uyNsZb5QOV243R-EQqdsyUKX7t5_9sQd6LYtw1ZyPA,634
|
1885
1885
|
py2docfx/venv/0/Scripts/rstpep2html.py,sha256=p-PYRUWuvD1LWAzofxrQu_Go3SMfIS8q0pmy6HT2Y5E,702
|
1886
|
-
py2docfx-0.1.11.
|
1887
|
-
py2docfx-0.1.11.
|
1888
|
-
py2docfx-0.1.11.
|
1889
|
-
py2docfx-0.1.11.
|
1886
|
+
py2docfx-0.1.11.dev1869610.dist-info/METADATA,sha256=8Ce8hBQ_337Beft-kjIhxPoBLixD304QaJTxJzRmW9Q,601
|
1887
|
+
py2docfx-0.1.11.dev1869610.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
1888
|
+
py2docfx-0.1.11.dev1869610.dist-info/top_level.txt,sha256=5dH2uP81dczt_qQJ38wiZ-gzoVWasfiJALWRSjdbnYU,9
|
1889
|
+
py2docfx-0.1.11.dev1869610.dist-info/RECORD,,
|
File without changes
|
File without changes
|