FarDescription.psd1

@{
    Author = 'Roman Kuzmin'
    ModuleVersion = '1.0.0'
    Description = 'Far Manager style descriptions of files and directories.'
    CompanyName = 'https://github.com/nightroman'
    Copyright = 'Copyright (c) Roman Kuzmin'

    PowerShellVersion = '2.0'
    GUID = '{1e7f7fc4-59c4-48c6-8847-bddef25458dd}'

    ModuleToProcess = 'FarDescription.dll'
    RequiredAssemblies = 'FarDescription.dll'
    TypesToProcess = @('FarDescription.Types.ps1xml')

    CmdletsToExport = @(
        'Sync-FarDescriptionSynopsis'
        'Update-FarDescription'
    )

    PrivateData = @{
        PSData = @{
            Tags = 'FarManager', 'Description'
            ProjectUri = 'https://github.com/nightroman/FarDescription'
            LicenseUri = 'https://github.com/nightroman/FarDescription/blob/master/LICENSE.txt'
            ReleaseNotes = 'https://github.com/nightroman/FarDescription/blob/master/Release-Notes.md'
        }
    }
}