Skip to content

Commit

Permalink
Merge pull request #1143 from d35ha/Ipython-Package
Browse files Browse the repository at this point in the history
Add ipython.vm
  • Loading branch information
emtuls authored Oct 23, 2024
2 parents ceb4cc5 + f598aff commit 81b81be
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/ipython.vm/ipython.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>ipython.vm</id>
<version>8.27.0.20241001</version>
<authors>Fernando Perez</authors>
<description>A powerful interactive Python shell</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20240607" />
<dependency id="python3.vm" />
</dependencies>
</metadata>
</package>
7 changes: 7 additions & 0 deletions packages/ipython.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -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 ""
7 changes: 7 additions & 0 deletions packages/ipython.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 81b81be

Please sign in to comment.