SpeechTagger.psd1

#
# Part-of-Speech tagging module based on the Stanford Part of Speech Tagger
# https://nlp.stanford.edu/software/tagger.shtml
#

@{

 RootModule = 'SpeechTagger.dll'

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

# ID used to uniquely identify this module
GUID = 'e443670e-d106-4aff-85c8-ee2115c65d51'

# Author of this module
Author = 'Lee Holmes'

# Description of the functionality provided by this module
Description = 'Part-of-Speech tagging module based on the Stanford Part of Speech Tagger - https://nlp.stanford.edu/software/tagger.shtml'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @("Split-PartOfSpeech")

}