diff options
author | Paul Moore <p.f.moore@gmail.com> | 2019-03-30 16:32:05 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-03-30 16:32:05 (GMT) |
commit | e724152796a5a41544f52054506c6c2248242a5d (patch) | |
tree | d0c43f7affad109765d06e02be6f29ce23324a6e /PC/layout | |
parent | e653d4d8e820a7a004ad399530af0135b45db27a (diff) | |
download | cpython-e724152796a5a41544f52054506c6c2248242a5d.zip cpython-e724152796a5a41544f52054506c6c2248242a5d.tar.gz cpython-e724152796a5a41544f52054506c6c2248242a5d.tar.bz2 |
bpo-36010: Add venv to the nuget distribution (GH-12367)
Diffstat (limited to 'PC/layout')
-rw-r--r-- | PC/layout/support/options.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/PC/layout/support/options.py b/PC/layout/support/options.py index 76d9e34..22492f2 100644 --- a/PC/layout/support/options.py +++ b/PC/layout/support/options.py @@ -53,7 +53,15 @@ PRESETS = { }, "nuget": { "help": "nuget package", - "options": ["stable", "pip", "distutils", "dev", "props"], + "options": [ + "dev", + "tools", + "pip", + "stable", + "distutils", + "venv", + "props" + ], }, "default": { "help": "development kit package", |