comparison env/lib/python3.9/site-packages/gxformat2/__init__.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 """The public interface or entry point for the Format 2 workflow code."""
2
3 __version__ = '0.15.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 )