-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path__init__.py
42 lines (33 loc) · 1.35 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
"""
***************************************************************************
__init__.py
---------------------
Date : September 2012
Copyright : (C) 2012-2020 by Jürgen Fischer
Email : jef at norbit dot de
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
from __future__ import absolute_import
def name():
return u"ALKIS-Einbindung"
def description():
return u"Dies Plugin dient zur Einbindung von ALKIS-Layern."
def version():
return "Version 0.1"
def qgisMinimumVersion():
return "1.8"
def authorName():
return u"Jürgen E. Fischer <[email protected]>"
def icon():
return ":/plugins/alkis/logo.png"
def classFactory(iface):
from .alkisplugin import alkisplugin
return alkisplugin(iface)