OpenCage.psd1

@{
    RootModule        = 'OpenCage.psm1'
    ModuleVersion     = '0.2.0'
    GUID              = 'a9f1f1d5-1b49-4e7f-9c0f-3bce49963cf0'
    Author            = 'Allison Ragas'
    CompanyName       = 'Allison Ragas'
    Copyright         = 'Copyright (c) 2025 Allison Ragas'
    Description       = 'PowerShell module for interacting with the OpenCage Geocoding API.'
    PowerShellVersion = '7.0'

    FunctionsToExport = @(
        'Invoke-Geocode',
        'Invoke-ReverseGeocode'
    )

    CmdletsToExport    = @()
    AliasesToExport    = @()
    VariablesToExport  = @()
    FormatsToProcess   = @()
    TypesToProcess     = @()
    RequiredAssemblies = @()
    ScriptsToProcess   = @()
    NestedModules      = @()

    PrivateData = @{
        PSData = @{
            Tags         = @('OpenCage', 'Geocoding', 'API', 'Geospatial')
            LicenseUri   = 'https://github.com/aliragas/opencage-powershell/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/aliragas/opencage-powershell'
            ReleaseNotes = 'https://github.com/aliragas/opencage-powershell/releases'
        }
    }
}