diff --git a/packages/ipython.vm/ipython.vm.nuspec b/packages/ipython.vm/ipython.vm.nuspec new file mode 100644 index 00000000..64d87650 --- /dev/null +++ b/packages/ipython.vm/ipython.vm.nuspec @@ -0,0 +1,13 @@ + + + + ipython.vm + 8.27.0.20241001 + Fernando Perez + A powerful interactive Python shell + + + + + + diff --git a/packages/ipython.vm/tools/chocolateyinstall.ps1 b/packages/ipython.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 00000000..e88dad31 --- /dev/null +++ b/packages/ipython.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'ipython' +$category = 'Productivity Tools' + +VM-Install-With-Pip -toolName $toolName -category $category -arguments "" diff --git a/packages/ipython.vm/tools/chocolateyuninstall.ps1 b/packages/ipython.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 00000000..fd0c128f --- /dev/null +++ b/packages/ipython.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'ipython' +$category = 'Productivity Tools' + +VM-Uninstall-With-Pip -toolName $toolName -category $category