comparison 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
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1 """The public interface or entry point for the Format 2 workflow code."""
2
3 __version__ = '0.13.0'
4
5 PROJECT_NAME = "gxformat2"
6 PROJECT_OWNER = PROJECT_USERAME = "galaxyproject"
7 PROJECT_AUTHOR = 'Galaxy Project and Community'
8 PROJECT_EMAIL = 'jmchilton@gmail.com'
9 PROJECT_URL = "https://github.com/galaxyproject/gxformat2"
10
11
12 from .converter import ImportOptions, python_to_workflow # NOQA
13 from .export import from_galaxy_native # NOQA
14 from .interface import ImporterGalaxyInterface # NOQA
15 from .main import convert_and_import_workflow # NOQA
16
17
18 __all__ = (
19 'convert_and_import_workflow',
20 'from_galaxy_native',
21 'ImporterGalaxyInterface',
22 'ImportOptions',
23 'python_to_workflow',
24 )