PowerShelGet.psd1

@{
    RootModule        = 'PowerShelGet.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '7543385b-d287-4c3f-949c-3ec668d2437c'
    Author            = 'Riley Parker'
    CompanyName       = 'Riley Parker'
    Copyright         = '(c) Riley Parker. All rights reserved.'
    Description       = 'Practical management tools'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PowerShelGetStatus', 'Initialize-PowerShelGet')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}