# __init__.py --- Initialization file for the bmp package. # Copyright (c) 2005 Scott Grayban # # This file is part of PyBMP. # # PyBMP 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; version 2 dated June, 1991. # # PyBMP 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. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to the # Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, # Boston, MA 02110-1301 USA. # # $Id: __init__.py 3 2006-03-28 11:52:53Z sgrayban $ # """Python interface to beep-media-player --- initialization of the BMP package. This file contains initialization code for the BMP package. $Id: __init__.py 3 2006-03-28 11:52:53Z sgrayban $ """ import sys __all__ = ["common", "control", "config"] # This brings us common.error, which is expected to be here from common import * # For backward compatibility from control import *