1# -*- coding: utf-8 -*-
2
3"""
4***************************************************************************
5    __init__.py
6    ---------------------
7    Date                 : June 2021
8    Copyright            : (C) 2021 by Alexander Bruy
9    Email                : alexander dot bruy at gmail dot com
10***************************************************************************
11*                                                                         *
12*   This program is free software; you can redistribute it and/or modify  *
13*   it under the terms of the GNU General Public License as published by  *
14*   the Free Software Foundation; either version 2 of the License, or     *
15*   (at your option) any later version.                                   *
16*                                                                         *
17***************************************************************************
18"""
19
20__author__ = 'Alexander Bruy'
21__date__ = 'June 2021'
22__copyright__ = '(C) 2021, Alexander Bruy'
23
24
25def classFactory(iface):
26    from otbprovider.OtbProviderPlugin import OtbProviderPlugin
27    return OtbProviderPlugin()
28