-
Notifications
You must be signed in to change notification settings - Fork 4
/
GeneanetForGramps.gpr.py
44 lines (42 loc) · 1.57 KB
/
GeneanetForGramps.gpr.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
#
# Copyright (C) 2021 Bruno Cornec
#
# 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 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# $Id: $
#------------------------------------------------------------------------
#------------------------------------------------------------------------
#print('Before registering Geneanet Plugin')
register(TOOL,
id = 'Import Geneanet data for Gramps',
name = _("Import Geneanet data for Gramps"),
#name_accell = _("Geneanet for Gramps"),
description = _("Extension to import data from Geneanet into Gramps."),
version = '0.99.91',
gramps_target_version = '5.1',
status = STABLE,
fname = 'GeneanetForGramps.py',
authors = ['Bruno Cornec'],
authors_email = ['[email protected]'],
category = TOOL_DBPROC,
toolclass = 'GeneanetForGramps',
optionclass = 'GeneanetForGrampsOptions',
tool_modes = [TOOL_MODE_GUI],
#height = 100,
#expand=True,
#gramplet = 'GeneanetForGramps',
#gramplet_title=_("Import Geneanet data for Gramps"),
#detached_width = 500,
#detached_height = 400,
#help_url = "5.1_Addons#Addon_List",
#navtypes=["Person"],
)
#print('After registering Geneanet Plugin')