|
8 | 8 |
|
9 | 9 | @{
|
10 | 10 |
|
11 |
| -# Script module or binary module file associated with this manifest. |
12 |
| -RootModule = 'EnablePython.psm1' |
| 11 | + # Script module or binary module file associated with this manifest. |
| 12 | + RootModule = 'EnablePython.psm1' |
13 | 13 |
|
14 |
| -# Version number of this module. |
15 |
| -ModuleVersion = '2.2.0' |
| 14 | + # Version number of this module. |
| 15 | + ModuleVersion = '2.3.0' |
16 | 16 |
|
17 |
| -# ID used to uniquely identify this module |
18 |
| -GUID = '20232e29-56bc-4024-823b-afe3994c9365' |
| 17 | + # ID used to uniquely identify this module |
| 18 | + GUID = '20232e29-56bc-4024-823b-afe3994c9365' |
19 | 19 |
|
20 |
| -# Author of this module |
21 |
| -Author = 'David Whittingham' |
| 20 | + # Author of this module |
| 21 | + Author = 'David Whittingham' |
22 | 22 |
|
23 |
| -# Company or vendor of this module |
24 |
| -# CompanyName = '' |
| 23 | + # Company or vendor of this module |
| 24 | + # CompanyName = '' |
25 | 25 |
|
26 |
| -# Copyright statement for this module |
27 |
| -Copyright = '(c) 2018 David Whittingham. All rights reserved.' |
| 26 | + # Copyright statement for this module |
| 27 | + Copyright = 'Copyright (c) 2018-2021 David Whittingham' |
28 | 28 |
|
29 |
| -# Description of the functionality provided by this module |
30 |
| -Description = 'PowerShell advanced functions for enabling different versions of Python.' |
| 29 | + # Description of the functionality provided by this module |
| 30 | + Description = 'PowerShell advanced functions for enabling different versions of Python.' |
31 | 31 |
|
32 |
| -# Minimum version of the Windows PowerShell engine required by this module |
33 |
| -PowerShellVersion = '3.0' |
| 32 | + # Minimum version of the Windows PowerShell engine required by this module |
| 33 | + PowerShellVersion = '3.0' |
34 | 34 |
|
35 |
| -# Name of the Windows PowerShell host required by this module |
36 |
| -# PowerShellHostName = '' |
| 35 | + # Name of the Windows PowerShell host required by this module |
| 36 | + # PowerShellHostName = '' |
37 | 37 |
|
38 |
| -# Minimum version of the Windows PowerShell host required by this module |
39 |
| -# PowerShellHostVersion = '' |
| 38 | + # Minimum version of the Windows PowerShell host required by this module |
| 39 | + # PowerShellHostVersion = '' |
40 | 40 |
|
41 |
| -# Minimum version of Microsoft .NET Framework required by this module |
42 |
| -# DotNetFrameworkVersion = '' |
| 41 | + # Minimum version of Microsoft .NET Framework required by this module |
| 42 | + # DotNetFrameworkVersion = '' |
43 | 43 |
|
44 |
| -# Minimum version of the common language runtime (CLR) required by this module |
45 |
| -# CLRVersion = '' |
| 44 | + # Minimum version of the common language runtime (CLR) required by this module |
| 45 | + # CLRVersion = '' |
46 | 46 |
|
47 |
| -# Processor architecture (None, X86, Amd64) required by this module |
48 |
| -# ProcessorArchitecture = '' |
| 47 | + # Processor architecture (None, X86, Amd64) required by this module |
| 48 | + # ProcessorArchitecture = '' |
49 | 49 |
|
50 |
| -# Modules that must be imported into the global environment prior to importing this module |
51 |
| -# RequiredModules = @() |
| 50 | + # Modules that must be imported into the global environment prior to importing this module |
| 51 | + # RequiredModules = @() |
52 | 52 |
|
53 |
| -# Assemblies that must be loaded prior to importing this module |
54 |
| -# RequiredAssemblies = @() |
| 53 | + # Assemblies that must be loaded prior to importing this module |
| 54 | + # RequiredAssemblies = @() |
55 | 55 |
|
56 |
| -# Script files (.ps1) that are run in the caller's environment prior to importing this module. |
57 |
| -# ScriptsToProcess = @() |
| 56 | + # Script files (.ps1) that are run in the caller's environment prior to importing this module. |
| 57 | + # ScriptsToProcess = @() |
58 | 58 |
|
59 |
| -# Type files (.ps1xml) to be loaded when importing this module |
60 |
| -# TypesToProcess = @() |
| 59 | + # Type files (.ps1xml) to be loaded when importing this module |
| 60 | + # TypesToProcess = @() |
61 | 61 |
|
62 |
| -# Format files (.ps1xml) to be loaded when importing this module |
63 |
| -# FormatsToProcess = @() |
| 62 | + # Format files (.ps1xml) to be loaded when importing this module |
| 63 | + # FormatsToProcess = @() |
64 | 64 |
|
65 |
| -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
66 |
| -# NestedModules = @() |
| 65 | + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
| 66 | + # NestedModules = @() |
67 | 67 |
|
68 |
| -# Functions to export from this module |
69 |
| -FunctionsToExport = @("Get-Python","Enable-Python","Disable-Python") |
| 68 | + # Functions to export from this module |
| 69 | + FunctionsToExport = @("Get-Python", "Enable-Python", "Disable-Python") |
70 | 70 |
|
71 |
| -# Cmdlets to export from this module |
72 |
| -CmdletsToExport = @() |
| 71 | + # Cmdlets to export from this module |
| 72 | + CmdletsToExport = @() |
73 | 73 |
|
74 |
| -# Variables to export from this module |
75 |
| -VariablesToExport = @() |
| 74 | + # Variables to export from this module |
| 75 | + VariablesToExport = @() |
76 | 76 |
|
77 |
| -# Aliases to export from this module |
78 |
| -AliasesToExport = @() |
| 77 | + # Aliases to export from this module |
| 78 | + AliasesToExport = @() |
79 | 79 |
|
80 |
| -# List of all modules packaged with this module |
81 |
| -# ModuleList = @() |
| 80 | + # List of all modules packaged with this module |
| 81 | + # ModuleList = @() |
82 | 82 |
|
83 |
| -# List of all files packaged with this module |
84 |
| -# FileList = @() |
| 83 | + # List of all files packaged with this module |
| 84 | + # FileList = @() |
85 | 85 |
|
86 |
| -# Private data to pass to the module specified in RootModule/ModuleToProcess |
87 |
| -PrivateData = @{ |
| 86 | + # Private data to pass to the module specified in RootModule/ModuleToProcess |
| 87 | + PrivateData = @{ |
88 | 88 |
|
89 |
| - PSData = @{ |
| 89 | + PSData = @{ |
90 | 90 |
|
91 |
| - # Tags applied to this module. These help with module discovery in online galleries. |
92 |
| - Tags = @("Python") |
| 91 | + # Tags applied to this module. These help with module discovery in online galleries. |
| 92 | + Tags = @("Python") |
93 | 93 |
|
94 |
| - # A URL to the license for this module. |
95 |
| - LicenseUri = 'https://raw.githubusercontent.com/DavidWhittingham/ps-EnablePython/master/LICENSE' |
| 94 | + # A URL to the license for this module. |
| 95 | + LicenseUri = 'https://raw.githubusercontent.com/DavidWhittingham/ps-EnablePython/master/LICENSE' |
96 | 96 |
|
97 |
| - # A URL to the main website for this project. |
98 |
| - ProjectUri = 'https://github.com/DavidWhittingham/ps-EnablePython' |
| 97 | + # A URL to the main website for this project. |
| 98 | + ProjectUri = 'https://github.com/DavidWhittingham/ps-EnablePython' |
99 | 99 |
|
100 |
| - # A URL to an icon representing this module. |
101 |
| - # IconUri = '' |
| 100 | + # A URL to an icon representing this module. |
| 101 | + # IconUri = '' |
102 | 102 |
|
103 |
| - # ReleaseNotes of this module |
104 |
| - # ReleaseNotes = '' |
| 103 | + # ReleaseNotes of this module |
| 104 | + # ReleaseNotes = '' |
105 | 105 |
|
106 |
| - } # End of PSData hashtable |
| 106 | + } # End of PSData hashtable |
107 | 107 |
|
108 |
| -} # End of PrivateData hashtable |
| 108 | + } # End of PrivateData hashtable |
109 | 109 |
|
110 |
| -# HelpInfo URI of this module |
111 |
| -# HelpInfoURI = '' |
| 110 | + # HelpInfo URI of this module |
| 111 | + # HelpInfoURI = '' |
112 | 112 |
|
113 |
| -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
114 |
| -# DefaultCommandPrefix = '' |
| 113 | + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
| 114 | + # DefaultCommandPrefix = '' |
115 | 115 |
|
116 | 116 | }
|
117 | 117 |
|
0 commit comments