PsAcoustId.psd1

@{
    RootModule = 'PsAcoustId.psm1'
    ModuleVersion = '0.1.0'
    GUID = 'c1f5d18f-6b5a-4c0a-9d2e-8bb3d0c93d23'
    Author = 'David Alderman'
    CompanyName = 'David Alderman'
    Copyright = '(c) 2026'
    Description = 'Generate AcoustID/Chromaprint fingerprints using NAudio and Chromaprint .NET bindings.'
    PowerShellVersion = '7.0'
    FunctionsToExport = @('Get-AcoustIDFingerprint')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('acoustid', 'chromaprint', 'audio', 'fingerprint')
            ProjectUri = 'https://github.com/ionise/psAcoustID'
            LicenseUri = 'https://github.com/ionise/psAcoustID/blob/main/LICENSE'
            ReleaseNotes = @'
Initial PSGallery-ready release. Generates local AcoustID/Chromaprint fingerprints from WAV/AIFF/MP3/FLAC files.

Licenses Included:
- Module license: MIT (see LICENSE)
- Third-party notices: THIRD-PARTY-NOTICES.md
- Full third-party license texts: licenses/
'@

        }
    }
}