PSReadLien.psd1

@{
    RootModule        = 'PSReadLien.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '03e263af-586f-4fb7-abd9-51efa32656fa'
    Author            = 'Taylor Miller'
    CompanyName       = 'Taylor Miller'
    Copyright         = '(c) Taylor Miller. All rights reserved.'
    Description       = 'Portable utilities'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSReadLienStatus', 'Initialize-PSReadLien')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}