-
Notifications
You must be signed in to change notification settings - Fork 4
/
__init__.py
36 lines (28 loc) · 1.08 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
# --------------------------------------------------------
# __init__ - QuickMultiAttributeEdit init file
#
# begin : June 5, 2011
# copyright : (c) 2011 by Marco Braida
# email : See marcobra.ubuntu at gmail.com
#
# QuickMultiAttributeEdit is free software and is offered
# without guarantee or warranty. You can redistribute it
# and/or modify it under the terms of version 2 of the
# GNU General Public License (GPL v2) as published by the
# Free Software Foundation (www.gnu.org).
# --------------------------------------------------------
from quickmultiattributeedit_menu import quickmultiattributeedit_menu
def name():
return "QuickMultiAttributeEdit"
def description():
return "Edit and assing same column value in the attribute table for the selected elements"
def version():
return "2.1.1"
def qgisMinimumVersion():
return "2.0"
def authorName():
return "Marco Braida"
def icon():
return "icons/quickmultiattributeedit_update_selected.png"
def classFactory(iface):
return quickmultiattributeedit_menu(iface)