ExifDateTime.psd1

#
# Module manifest for module 'ExifDateTime'
#
# Chris Warwick, @cjwarwickps
#

@{

    # Script module or binary module file associated with this manifest.
    RootModule = 'ExifDateTime'

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

    # ID used to uniquely identify this module
    GUID = '113baf5f-6a29-4686-99c4-3fdacd628641'

    # Author of this module
    Author = 'Chris Warwick'

    # Company or vendor of this module
    CompanyName = 'Nuney.com'

    # Copyright statement for this module
    Copyright = '(c) 2015 Chris Warwick. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'Read or update the Exif DateTaken (ExifDT) property in an image file'

    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '2.0'

    # Functions to export from this module
    FunctionsToExport = 'Get-ExifDateTaken', 'Update-ExifDateTaken'

    # Cmdlets to export from this module
    CmdletsToExport = ''

    # Variables to export from this module
    VariablesToExport = ''

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{

        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @(
                'Exif'
                'DateTaken'
                'Date'
                'Image'
                'jpg'
                'photo'
                'DateTime'
                '36867'
            )

            # A URL to the license for this module.
            LicenseUri = 'https://github.com/ChrisWarwick/ExifDateTime/blob/master/LICENSE'

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/ChrisWarwick/ExifDateTime'

            # ReleaseNotes of this module
            ReleaseNotes = 'Refer to Readme.md'

        } # End of PSData hashtable

    } # End of PrivateData hashtable

}