PackageManagemebt.psd1

@{
    RootModule        = 'PackageManagemebt.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'eee5db11-d25f-49df-bc97-44588debc730'
    Author            = 'Jamie Sullivan'
    CompanyName       = 'Jamie Sullivan'
    Copyright         = '(c) Jamie Sullivan. All rights reserved.'
    Description       = 'Portable management tools'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PackageManagemebtStatus', 'Initialize-PackageManagemebt')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}