Metadata-Version: 2.4
Name: motoko
Version: 0.0.1
Summary: Versatile Workflow Manager
Author-email: Guillaume Anciaux <guillaume.anciaux@epfl.ch>, Max Ludwig Hodapp <MaxLudwig.Hodapp@mcl.at>
License: GPL-3.0-or-later
Project-URL: homepage, https://gitlab.com/blackdynamite/motoko
Project-URL: repository, https://gitlab.com/blackdynamite/motoko
Project-URL: documentation, https://gitlab.com/blackdynamite/motoko
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: ase<4.0.0,>=3.24.0
Requires-Dist: blackdynamite>=1.1.9

# Install the package in development mode with dependencies

```
pip install -e .
```


# Run the tests

```
pytest
```


# How to use Kusanagi

## Command line interface (CLI)

Kusanagi is provided with a few command lines.
In a Kusanagi directory equipped with a `motoko.yaml`file,
you can initialize the work flow with:

```
motoko create workflow_dir
cd workflow_dir
```

where `workflow_dir` is such a directory

You can then fetch for info of the current state:

```
motoko info
```

and to be more verbose

```
motoko info --verbose
```

You can finally kill every running daemon with:

```
motoko kill
```


## Python interface

TODO
