-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path__init__.py
55 lines (36 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
"""
***************************************************************************
qgswps.py QGIS Web Processing Service Plugin
-------------------------------------------------------------------
Date : 09 November 2009
Copyright : (C) 2009 by Dr. Horst Duester
email : horst dot duester at kappasys dot ch
***************************************************************************
* *
* 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. *
* *
***************************************************************************
"""
def name():
return "WPS-Client"
def description():
return "Client for Web Processing Services"
def version():
return "3.0.0 (experimental)"
def date():
return '2020-10-16'
def email():
return '[email protected]'
def author():
return "Dr. Horst Duester / Sourcepole AG Zurich"
def icon():
return "images/wps-add.png"
def homepage():
return "https://github.com/sourcepole/qgis-wps-client"
def classFactory(iface):
from .qgswps import QgsWps
return QgsWps(iface)