Private/Generate-iPilotModuleManifest.ps1

<#
$manifest = @{
    Path = 'C:\Users\Clark\Repositories\nuwave\iPilot.psd1'
    RootModule = 'iPilot.psm1'
    Author = 'Joel Clark'
    FunctionsToExport = "New-iPilotTeamsUserAssignment",New-iPilotTeamsBatchUserAssignment","Get-iPilotAvailableNumbers","Get-iPilotTeamsUser","Get-iPilotAvilableNumbers","Set-iPilotTeamsUser","Remove-iPilotTeamsUserAssignment"
    GUID = 'a50e54bc-75bd-43b2-a8f7-a4e4ba80bdd7'
    CompanyName = 'NuWave Communications, Inc.'
    Copyright = '(c) 2020 NuWave Communications, Inc. All rights reserved.'
    Description = 'PowerShell functions to interact with NuWave iPilot API'
    PowerShellVersion = '5.1'
    ProjectUri = 'https://github.com/NuWave-Communications/ipilot-powershell'
    Tags = "iPilot", "NuWave", "API", "Teams"
}
New-ModuleManifest @manifest
#>