aboutsummaryrefslogtreecommitdiff
path: root/libs/installer_wizard/src/__init__.py
blob: 2b3b3914d79bffc0ba211ef011cb13482f3c0a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
This file is the entry point of the module and must contain a createPlugin()
or createPlugins() function.
"""

from __future__ import annotations

import os
import site

site.addsitedir(os.path.join(os.path.dirname(__file__), "lib"))

from .installer import WizardInstaller  # noqa: E402


def createPlugin() -> WizardInstaller:
    return WizardInstaller()