Source code distributed/deploy/__init__.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from contextlib import suppress

from .cluster import Cluster
from .local import LocalCluster
from .ssh import SSHCluster
from .spec import SpecCluster, ProcessInterface
from .adaptive import Adaptive

with suppress(ImportError):
    from .ssh import SSHCluster