Skip to content

Commit

Permalink
Add libraries-extra.python3.vm
Browse files Browse the repository at this point in the history
The FLARE team is working in a new tool and needs the following
libraries that are useful in general to develop reverse engineering
related tools.
  • Loading branch information
Ana06 committed Oct 31, 2024
1 parent f920d4e commit 40b06a9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
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>libraries-extra.python3.vm</id>
<version>0.0.0.20241029</version>
<description>Install extra Python useful libraries</description>
<authors>Several, check in pypi.org for every of the libraries</authors>
<dependencies>
<dependency id="common.vm" version="0.0.0.20241029"/>
<dependency id="libraries.python3.vm" />
</dependencies>
</metadata>
</package>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

try {
$dependencies = "asciinet,bs4,flare_capa,langchain,langchain_google_genai,langchain_openai,networkx,python-statemachine,requests,tabulate,tenacity"
VM-Pip-Install $dependencies
} catch {
VM-Write-Log-Exception $_
}

0 comments on commit 40b06a9

Please sign in to comment.