1 |
jan |
2400 |
# Copyright (C) 2004 by Intevation GmbH |
2 |
frank |
2196 |
# Authors: |
3 |
jan |
2400 |
# Frank Koormann <[email protected]> (2004) |
4 |
|
|
# Jan-Oliver Wagner <[email protected]> (2004) |
5 |
frank |
2196 |
# |
6 |
|
|
# This program is free software under the GPL (>=v2) |
7 |
|
|
# Read the file COPYING coming with Thuban for details. |
8 |
jan |
2400 |
|
9 |
|
|
# import the actual module |
10 |
|
|
import bboxdump |
11 |
|
|
|
12 |
|
|
# perform the registration of the extension |
13 |
|
|
from Thuban import _ |
14 |
|
|
from Thuban.UI.extensionregistry import ExtensionDesc, ext_registry |
15 |
|
|
|
16 |
|
|
ext_registry.add(ExtensionDesc( |
17 |
|
|
name = 'bboxdump', |
18 |
|
|
version = '1.0.0', |
19 |
|
|
authors= [ 'Frank Koormann' ], |
20 |
|
|
copyright = '2004 Intevation GmbH', |
21 |
|
|
desc = _("Dumps the bounding boxes of all\n" \ |
22 |
|
|
"shapes of the selected layer."))) |