DataAgent.psd1
|
@{ RootModule = 'DataAgent.psm1' ModuleVersion = '0.5.0' GUID = '32662c0b-0a5d-49ac-8c62-8f7ae05f79c0' Author = 'Roy Ashbrook' Copyright = '(c) 2026 Roy Ashbrook. MIT License.' Description = 'Run a configured source, formatter, and destination using existing PowerShell tools.' PowerShellVersion = '7.4' FunctionsToExport = @('Invoke-DataAgent') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() FileList = @('DataAgent.psd1', 'DataAgent.psm1', 'LICENSE', 'CAPABILITIES.md', 'src/sql.ps1', 'src/csv.ps1', 'fmt/csv.ps1', 'fmt/xlsx.ps1', 'fmt/custom.ps1', 'dst/email.ps1', 'dst/sftp.ps1', 'dst/ftp.ps1', 'dst/ftps.ps1') PrivateData = @{ PSData = @{ Tags = @('ETL', 'Data', 'CSV', 'Automation', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS') LicenseUri = 'https://github.com/royashbrook/DataAgent/blob/main/LICENSE' ProjectUri = 'https://github.com/royashbrook/DataAgent' ReleaseNotes = 'An optional directory in the config names where the run works: its log, relative adapter paths and output. Without it the run works in the calling script''s directory, as before. A module that wraps the runner and makes the call sets it, since its own file would otherwise be the caller.' } } } |