diff --git a/planutils/packages/machetli/install b/planutils/packages/machetli/install new file mode 100755 index 0000000..0fc9827 --- /dev/null +++ b/planutils/packages/machetli/install @@ -0,0 +1,5 @@ +#!/bin/bash + +# General setup / configuration +pip3 install machetli + diff --git a/planutils/packages/machetli/manifest.json b/planutils/packages/machetli/manifest.json new file mode 100644 index 0000000..c0a2f7f --- /dev/null +++ b/planutils/packages/machetli/manifest.json @@ -0,0 +1,6 @@ +{ + "name": "Machetli", + "description": "Machetli is a Python package for reproducing characteristics of a program (such as bugs) with modified instances. It is meant to be helpful for debugging complex programs and narrowing down where specific behaviors are caused. Currently, Machetli handles instances for automated planners, specified either in PDDL or in the SAS+ format used by Fast Downward but adding support for other file formats is easy.", + "install-size": "3MB", + "dependencies": [] +} diff --git a/planutils/packages/machetli/uninstall b/planutils/packages/machetli/uninstall new file mode 100755 index 0000000..9a30e6b --- /dev/null +++ b/planutils/packages/machetli/uninstall @@ -0,0 +1,3 @@ +#!/bin/bash + +pip3 uninstall machetli