PSSpinner.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'PSSpinner.psm1'

    # Version number of this module.
    ModuleVersion = '1.0.0'

    # ID used to uniquely identify this module
    GUID = 'a1b2c3d4-e5f6-7890-1234-567890abcdef'

    # Author of this module
    Author = 'Marco Torello'

    # Description of the functionality provided by this module
    Description = 'A PowerShell module that provides an ora-like terminal spinner.'

    # Functions to export from this module
    FunctionsToExport = @('Invoke-Spinner')

    # Cmdlets to export from this module
    CmdletsToExport = @()

    # Variables to export from this module
    VariablesToExport = @()

    # Aliases to export from this module
    AliasesToExport = @()

    # Minimum PowerShell version
    PowerShellVersion = '5.1'
}