PSCredentialManager.psd1

@{
    RootModule = 'PSCredentialManager.psm1'
    ModuleVersion = '0.6'
    GUID = '1edda3dd-4527-46c4-9d86-f6bda0dc1390'
    Author = 'Adam Bertram'
    CompanyName = 'Adam the Automator, LLC'
    Copyright = '(c) 2017 Adam Bertram. All rights reserved.'
    Description = 'This module allows management and automation of Windows cached credentials.'
    PowerShellVersion = '5.0'
    FunctionsToExport = 'Get-CachedCredential','Remove-CachedCredential','New-CachedCredential'
    CmdletsToExport = '*'
    VariablesToExport = '*'
    AliasesToExport = '*'
    PrivateData = @{
        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('PSModule')

            # A URL to the license for this module.
            # LicenseUri = ''

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/adbertram/PSCredentialManager'

            # A URL to an icon representing this module.
            # IconUri = ''

            # ReleaseNotes of this module
            # ReleaseNotes = ''

        } # End of PSData hashtable

    } 
}