Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions GeneanetForGramps/GeneanetForGramps.gpr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#
# Copyright (C) 2020 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 = '1.0.0',
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')
Loading