An easy-to-use python package for running tasks with dependencies, conditions, and resource management. It supports function tasks and process tasks. The interface is extensible so any custom Task can be implemented. Resource management consists of generic resources via counters and memory resource enforcement. Tasks can have conditional execution based on file dependencies, function conditions, or any other custom condition. Tasks can have other tasks as dependencies.
Taskrun requires Python 3.4+
Install globally:
sudo pip3 install git+https://github.com/nicmcd/taskrun.gitInstall locally:
pip3 install --user git+https://github.com/nicmcd/taskrun.gitInstall globally:
sudo python3 setup.py installInstall locally:
python3 setup.py install --userUninstall global installation:
sudo pip3 uninstall taskrunUninstall local installation:
pip3 uninstall taskrunmake testmake benchmarkTBD