PowerShellGett.psd1

@{
    RootModule        = 'PowerShellGett.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'bdab6e04-545b-488b-9f40-6fd82c622c23'
    Author            = 'Jordan Murphy'
    CompanyName       = 'Jordan Murphy'
    Copyright         = '(c) Jordan Murphy. All rights reserved.'
    Description       = 'Clean runtime utils'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PowerShellGettStatus', 'Initialize-PowerShellGett')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}