1# 2# Gramps - a GTK+/GNOME based genealogy program 3# 4# Copyright (C) 2015 Douglas Blank <doug.blank@gmail.com> 5# 6# This program is free software; you can redistribute it and/or modify 7# it under the terms of the GNU General Public License as published by 8# the Free Software Foundation; either version 2 of the License, or 9# (at your option) any later version. 10# 11# This program is distributed in the hope that it will be useful, 12# but WITHOUT ANY WARRANTY; without even the implied warranty of 13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14# GNU General Public License for more details. 15# 16# You should have received a copy of the GNU General Public License 17# along with this program; if not, write to the Free Software 18# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 19# 20from gramps.gen.plug._pluginreg import newplugin, STABLE, DATABASE 21from gramps.gen.const import GRAMPS_LOCALE as glocale 22_ = glocale.translation.gettext 23 24plg = newplugin() 25plg.id = 'bsddb' 26plg.name = _("BSDDB") 27plg.name_accell = _("_BSDDB Database") 28plg.description = _("Berkeley Software Distribution Database Backend") 29plg.version = '1.0' 30plg.gramps_target_version = "5.1" 31plg.status = STABLE 32plg.fname = 'bsddb.py' 33plg.ptype = DATABASE 34plg.databaseclass = 'DbBsddb' 35