Metadata-Version: 2.4
Name: motoko
Version: 0.0.7
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.3.1

<img width="20%" style="display: block; margin-left: auto; margin-right: auto;" src="https://gitlab.com/blackdynamite/motoko/-/raw/main/icon.png?ref_type=heads">

# How to use Motoko

## Command line interface (CLI)

Motoko 草薙素子 is provided with a few command lines.
In a Motoko 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
```


# Developments

## Install the package in development mode with dependencies

```
pip install -e .
```


## Run the tests

```
pytest
```

## Python interface

TODO
