mirror of
https://github.com/vale981/jobmanager
synced 2025-03-06 10:21:39 -05:00
20 lines
435 B
Python
20 lines
435 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
import warnings
|
|
|
|
from .jm_version import __version__
|
|
|
|
from .jobmanager import *
|
|
|
|
from . import clients
|
|
from . import decorators
|
|
from . import progress
|
|
from . import servers
|
|
from . import ode_wrapper
|
|
|
|
# persistentData requires sqlitedict
|
|
try:
|
|
from . import persistentData
|
|
except ImportError as e:
|
|
warnings.warn("Submodule 'persistentData' is not available. Reason: {}.".format(e))
|
|
|