Commit e7241527 authored by Paul Moore's avatar Paul Moore Committed by Steve Dower

bpo-36010: Add venv to the nuget distribution (GH-12367)

parent e653d4d8
Add the venv standard library module to the nuget distribution for Windows.
\ No newline at end of file
...@@ -53,7 +53,15 @@ PRESETS = { ...@@ -53,7 +53,15 @@ PRESETS = {
}, },
"nuget": { "nuget": {
"help": "nuget package", "help": "nuget package",
"options": ["stable", "pip", "distutils", "dev", "props"], "options": [
"dev",
"tools",
"pip",
"stable",
"distutils",
"venv",
"props"
],
}, },
"default": { "default": {
"help": "development kit package", "help": "development kit package",
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<PythonArguments>$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</PythonArguments> <PythonArguments>$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</PythonArguments>
<PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)obj"</PythonArguments> <PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)obj"</PythonArguments>
<PythonArguments>$(PythonArguments) --copy "$(IntermediateOutputPath)pkg"</PythonArguments> <PythonArguments>$(PythonArguments) --copy "$(IntermediateOutputPath)pkg"</PythonArguments>
<PythonArguments>$(PythonArguments) --include-dev --include-tools --include-pip --include-stable --include-launcher --include-props</PythonArguments> <PythonArguments>$(PythonArguments) --preset-nuget</PythonArguments>
<PackageArguments Condition="$(Packages) != ''">"$(IntermediateOutputPath)pkg\pip.exe" -B -m pip install -U $(Packages)</PackageArguments> <PackageArguments Condition="$(Packages) != ''">"$(IntermediateOutputPath)pkg\pip.exe" -B -m pip install -U $(Packages)</PackageArguments>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment