Scraperion.psd1
@{ RootModule = 'scraperion.dll' ModuleVersion = '1.0.1' GUID = '324f16e7-02b9-4ab4-b4d0-456abb6ae078' Author = 'Wil Taylor' Description = 'Module designed to allow automation and scraping of both web page and the screen.' Copyright = '(c) 2018 Wil Taylor. All rights reserved.' # 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 = @('Chromium', 'scrap', 'image') # A URL to the license for this module. LicenseUri = 'https://github.com/wiltaylor/ScraperionFramework/blob/master/LICENSE.md' # A URL to the main website for this project. ProjectUri = 'https://github.com/wiltaylor/ScraperionFramework' # ReleaseNotes of this module ReleaseNotes = 'https://github.com/wiltaylor/ScraperionFramework' } # End of PSData hashtable } # End of PrivateData hashtable } |