Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/pylingual.vm/pylingual.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>pylingual.vm</id>
<version>0.0.0.20251216</version>
<authors>Josh Wiedemeier, Elliot Tarbet, Max Zheng, Sangsoo Ko, Jessica Ouyang, Sang Kil Cha, Kangkook Jee</authors>
<description>Python decompiler for modern Python versions.</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20251215" />
<dependency id="python3.vm" version="0.0.0.20251215" />
</dependencies>
<tags>Python</tags>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/pylingual.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'pylingual'
$category = VM-Get-Category($MyInvocation.MyCommand.Definition)

VM-Pip-Install 'https://github.com/syssec-utd/pylingual/archive/9f0ba2aa0195ce853b65e1064e8aaae09b67966f.zip'

$pyPath = (Get-Command py).Source
VM-Install-Shortcut $toolName $category -executablePath $toolName -consoleApp $true -arguments "--help" -iconLocation $pyPath
8 changes: 8 additions & 0 deletions packages/pylingual.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'pylingual'
$category = VM-Get-Category($MyInvocation.MyCommand.Definition)

VM-Pip-Uninstall $toolName
VM-Remove-Tool-Shortcut $toolName $category
Loading