VMwarePowerShell.psd1

@{
    RootModule        = 'VMwarePowerShell.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '44331fa3-6635-4ed8-a316-71b7d614418a'
    Author            = 'Cameron Ward'
    CompanyName       = 'Cameron Ward'
    Copyright         = '(c) Cameron Ward. All rights reserved.'
    Description       = 'Neat automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-VMwarePowerShellStatus', 'Initialize-VMwarePowerShell')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}