Skip to content

Commit 836b893

Browse files
docs: update readme
1 parent 30f0977 commit 836b893

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@ This package provides a stable interface for interactions between Snakemake and
55
Plugins should implement the following skeleton to comply with this interface:
66

77
```python
8-
8+
from dataclasses import dataclass, field
9+
from typing import List, Generator, Optional
10+
from snakemake_interface_executor_plugins.executors.base import SubmittedJobInfo
911
from snakemake_interface_executor_plugins.executors.remote import RemoteExecutor
1012
from snakemake_interface_executor_plugins import ExecutorSettingsBase, CommonSettings
13+
from snakemake_interface_executor_plugins.workflow import WorkflowExecutorInterface
14+
from snakemake_interface_executor_plugins.logging import LoggerExecutorInterface
15+
from snakemake_interface_executor_plugins.jobs import (
16+
ExecutorJobInterface,
17+
)
1118

1219
# Optional:
1320
# Define additional settings for your executor.

0 commit comments

Comments
 (0)