view planemo/lib/python3.7/site-packages/gxformat2/__init__.py @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
line wrap: on
line source

"""The public interface or entry point for the Format 2 workflow code."""

__version__ = '0.13.0'

PROJECT_NAME = "gxformat2"
PROJECT_OWNER = PROJECT_USERAME = "galaxyproject"
PROJECT_AUTHOR = 'Galaxy Project and Community'
PROJECT_EMAIL = 'jmchilton@gmail.com'
PROJECT_URL = "https://github.com/galaxyproject/gxformat2"


from .converter import ImportOptions, python_to_workflow  # NOQA
from .export import from_galaxy_native  # NOQA
from .interface import ImporterGalaxyInterface  # NOQA
from .main import convert_and_import_workflow  # NOQA


__all__ = (
    'convert_and_import_workflow',
    'from_galaxy_native',
    'ImporterGalaxyInterface',
    'ImportOptions',
    'python_to_workflow',
)