diff --git a/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec b/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec new file mode 100644 index 00000000..947488b1 --- /dev/null +++ b/packages/rat-king-parser.vm/rat-king-parser.vm.nuspec @@ -0,0 +1,13 @@ + + + + rat-king-parser.vm + 4.0.1 + Jeff Archer + multi-family RAT config parser/extractor + + + + + + diff --git a/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 b/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 00000000..4fee0b98 --- /dev/null +++ b/packages/rat-king-parser.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,8 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'rat-king-parser' +$category = 'Python' +$version = '==4.0.1' + +VM-Install-With-Pip -toolName $toolName -category $category -version $version diff --git a/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 b/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 00000000..1fee9a5b --- /dev/null +++ b/packages/rat-king-parser.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'rat-king-parser' +$category = 'Python' + +VM-Uninstall-With-Pip $toolName $category